Stay organized with collections
Save and categorize content based on your preferences.
Clears values from a spreadsheet. The caller must specify the
spreadsheet ID and range. Only values are cleared -- all other
properties of the cell (such as formatting, data validation, etc..) are
kept.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-29 UTC."],[],[],null,["# Method: googleapis.sheets.v4.spreadsheets.values.clear\n\nClears values from a spreadsheet. The caller must specify the\nspreadsheet ID and range. Only values are cleared -- all other\nproperties of the cell (such as formatting, data validation, etc..) are\nkept.\n\nArguments\n---------\n\nRaised exceptions\n-----------------\n\nResponse\n--------\n\nIf successful, the response contains an instance of [`ClearValuesResponse`](https://cloud.google.com/workflows/docs/reference/googleapis/sheets/v4/Overview#ClearValuesResponse).\n\nSubworkflow snippet\n-------------------\n\nSome fields might be optional or required.\nTo identify required fields, refer to the [API documentation](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/clear). \n\n### YAML\n\n```yaml\n- clear:\n call: googleapis.sheets.v4.spreadsheets.values.clear\n args:\n range: ...\n spreadsheetId: ...\n result: clearResult\n```\n\n### JSON\n\n```json\n[\n {\n \"clear\": {\n \"call\": \"googleapis.sheets.v4.spreadsheets.values.clear\",\n \"args\": {\n \"range\": \"...\",\n \"spreadsheetId\": \"...\"\n },\n \"result\": \"clearResult\"\n }\n }\n]\n```"]]