Skip to content

Instantly share code, notes, and snippets.

@gauravv7
Created March 22, 2019 08:24
Show Gist options
  • Select an option

  • Save gauravv7/d42b55caebfa40154dd646bc8b6c7b90 to your computer and use it in GitHub Desktop.

Select an option

Save gauravv7/d42b55caebfa40154dd646bc8b6c7b90 to your computer and use it in GitHub Desktop.
get google cell background color hex code
function getHex(input) {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var cell = ss.getRange(input);
var result = cell.getBackground();
return result
}
@gauravv7
Copy link
Copy Markdown
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment