About 1,205,809 results (1,325 milliseconds)

Name a range of cells - Computer - Google Docs Editors Help

https://support.google.com/docs/answer/63175?hl=en&co=GENIE.Platform%3DDesktop
You can name ranges in Google Sheets to keep better track of them and create cleaner formulas. For example, instead of using "A1:B2" to describe a range of ...

Managing Named Ranges - Google Docs Editors Community

https://support.google.com/docs/thread/158332289/managing-named-ranges?hl=en
Apr 2, 2022 ... You could try renaming your range names so that they start with the ... Excel has a "Manage Named Ranges" is there anything like that ...

Invalid Error - Data validation drop downs - Google Docs Editors ...

https://support.google.com/docs/thread/51264873/invalid-error-data-validation-drop-downs?hl=en
Jun 4, 2020 ... ... excel, so this is my first time with sheets. ... Either update the Data Validation with the new named ranges or rename your ranges again for this ...

How do I rename tabs based on values in column A - Google Docs ...

https://support.google.com/docs/thread/35408930/how-do-i-rename-tabs-based-on-values-in-column-a?hl=en
Mar 24, 2020 ... I am trying to rename tabs based on values existing and/or entered in a range of cells located in column A.

Drop Down List From Uploaded Excel Spreadsheet Not Working ...

https://support.google.com/docs/thread/138406562/drop-down-list-from-uploaded-excel-spreadsheet-not-working?hl=en
Dec 2, 2021 ... The named range defined within the sheet is what is not working. I am able to rename a range within a given sheet and assign that range through ...

Filter function with named ranges - Google Docs Editors Community

https://support.google.com/docs/thread/170678815/filter-function-with-named-ranges?hl=en
Jul 11, 2022 ... ... ranges within a workbook to use on a different tab. When first setting it up it worked great, although when I tried to rename the range it ...

How to rename a TAB based on a cell value? - Google Docs Editors ...

https://support.google.com/docs/thread/5236560/how-to-rename-a-tab-based-on-a-cell-value?hl=en
May 1, 2019 ... if(e.range.rowStart === 1 && e.range.columnStart === 1) {. e.source.getActiveSheet().setName(e.value);. } } Hope that helps. Regards from ...

Unwanted changes to named ranges (the name) when copying a ...

https://support.google.com/docs/thread/94827954/unwanted-changes-to-named-ranges-the-name-when-copying-a-sheet-to-another-workbook?hl=en
Jan 23, 2021 ... I agree that the automatic named range rename from the short version to the long version makes it harder to work with named ranges. My ...

Fundamentals of Apps Script with Google Sheets #2: Spreadsheets ...

https://developers.google.com/codelabs/apps-script-fundamentals-2
Sep 18, 2024 ... How spreadsheets, sheets, and ranges are represented in Apps Script. How to access, create, and rename the active (open) spreadsheet with the ...

For some tables (not sheets!), only an icon is shown instead of table ...

https://support.google.com/docs/thread/328131943/for-some-tables-not-sheets-only-an-icon-is-shown-instead-of-table-name?hl=en
Mar 2, 2025 ... ... Rename table", "Adjust table range" etc); and an icon for the "views" menu ("Create group by view" etc). Some tables for some reason on my ...

Rename current tab based on cell while others are formatting their ...

https://support.google.com/docs/thread/242771592/rename-current-tab-based-on-cell-while-others-are-formatting-their-own-tabs-simultaneously?hl=en
Nov 6, 2023 ... const r = e.range; // the range of the edit. const sheet = r.getSheet(); // the sheet where the edit was done. const oldName = sheet.getName ...

Use tables in Google Sheets - Google Docs Editors Help

https://support.google.com/docs/answer/14239833?hl=en
Rename table; Adjust table range Select data range; Table header color. You can select a table header color or add a custom color. Table formatting : You can ...

Sort & filter your data - Computer - Google Docs Editors Help

https://support.google.com/docs/answer/3540681?hl=en&co=GENIE.Platform%3DDesktop
. Rename a filter view ... Tip: When you have a formula that points to a cell inside a filtered range, note that sorting the filtered range won't change the ...

Protect, hide, and edit sheets - Android - Google Docs Editors Help

https://support.google.com/docs/answer/1218656?hl=en&co=GENIE.Platform%3DAndroid
Protect a sheet or range To protect a sheet or range, use Google Sheets on a computer ... Rename a sheet. To change the name of a sheet in a spreadsheet ...

Protect, hide, and edit sheets - Computer - Google Docs Editors Help

https://support.google.com/docs/answer/1218656?hl=en&co=GENIE.Platform%3DDesktop
Protect a sheet or range If you don't want people to change the content in a spreadsheet, you can protect it. This shouldn't be used as a security measure.

Keyboard shortcuts for Google Sheets - Computer - Google Docs ...

https://support.google.com/docs/answer/181110?hl=en&co=GENIE.Platform%3DDesktop
Rename sheet, Alt + 1. Convert range to table, Ctrl + Alt + T. Format cells. Bold, Ctrl + b. Underline, Ctrl + u. Italic, Ctrl + i. Strikethrough, Alt + Shift + ...

Can you edit the legend titles in a chart? - Google Docs Editors ...

https://support.google.com/docs/thread/3690790/can-you-edit-the-legend-titles-in-a-chart?hl=en
Apr 6, 2019 ... MS 365 & Excel are looking pretty good to me now... ... After adding a row of header ensure that the row is still included in the data range (by ...

How to edit category's name from the drop down? - Google Docs ...

https://support.google.com/docs/thread/218646643/how-to-edit-category-s-name-from-the-drop-down?hl=en
May 31, 2023 ... When I try to rename it, it said "input must fall within specified range. Details. Sheets,Microsoft Windows,Personal use. Locked. Informational ...

Help with creating a script to auto-name sheets file based on ...

https://support.google.com/docs/thread/145083123/help-with-creating-a-script-to-auto-name-sheets-file-based-on-multiple-cell-values?hl=en
Jan 10, 2022 ... const onEdit = (e) => e.range.rowStart === 1 && e.range.columnStart === 4 ? e.source.rename(e.value) : null. I cannot for the life of me ...