Last active
December 31, 2018 14:05
-
-
Save phillypb/76c5ac1c8ef62f2a06ff0ddc98b10076 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 testGetActiveUser() { | |
| var ss = SpreadsheetApp.getActiveSpreadsheet(); | |
| var groupSheet = ss.getSheetByName('Group Feedback'); | |
| // run function to determine if Tutor 1 or 2 | |
| var whoAmI = getActiveUser(groupSheet); | |
| Logger.log('Value of whoAmI is: ' + whoAmI); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment