Skip to content

Instantly share code, notes, and snippets.

@yonibot
Created August 13, 2020 21:49
Show Gist options
  • Save yonibot/be64638bfc9bf69255207254072fe525 to your computer and use it in GitHub Desktop.
Save yonibot/be64638bfc9bf69255207254072fe525 to your computer and use it in GitHub Desktop.
Google Sheets Custom Functions
function rateMyDay(decimal) {
const ratingInWords = decimal > 0.5 ? 'great!' : 'eh.';
return [[decimal, ratingInWords], [decimal, ratingInWords]];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment