Skip to content

Instantly share code, notes, and snippets.

@Max-Makhrov
Last active March 13, 2018 07:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Max-Makhrov/182b8d5508a216c081b27a41ce42c91d to your computer and use it in GitHub Desktop.
Save Max-Makhrov/182b8d5508a216c081b27a41ce42c91d to your computer and use it in GitHub Desktop.
function test_Error()
{
var file = SpreadsheetApp.getActive();
var sheet = file.getSheetByName('No Such Sheet!');
var range = sheet.getRange(1, 1);
var value = range.getValue();
Logger.log(value);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment