You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the sheet name has spaces or starts with a bracket, surround the sheet name with single quotes ('), e.g 'Sheet One'!A1:B2. For simplicity, it is safe to always surround the sheet name with single quotes.
The text was updated successfully, but these errors were encountered:
I think single quotes should be the default. Not just spaces, but any sheet name resembling R1C1 or A1 notation will also cause Excel to surround the name in quotes. See the following example on SO: https://stackoverflow.com/a/41680637/5258043
I think it's a reasonable default. The linked API doc doesn't mention that single quotes in the sheet name are escaped by doubling, so if there's a function to extract the sheet name from a ref, it will have to de-escape them. E.g. ='Jenny''s Sheet'!A1
It is possible this should be the default, in fact.
From Google Sheets v4 API:
https://developers.google.com/sheets/api/guides/concepts#a1_notation
The text was updated successfully, but these errors were encountered: