Last active
April 25, 2018 05:01
-
-
Save soundTricker/5309ebc893bcebaedc906a2b4d1369ab to your computer and use it in GitHub Desktop.
2018/04/25 gtug girls gas
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function translate(val) { | |
if (val.map) { | |
return val.map(translate); | |
} | |
return LanguageApp.translate(val, "en", "ja"); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function onOpen(e) { | |
SpreadsheetApp.getActive().toast("シートの数: " + SpreadsheetApp.getActive().getSheets().length); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function onEdit(e) { | |
e.range.getSheet().getRange(e.range.getRow() + ":" + e.range.getRow()).setBackground("yellow"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment