The tutorial for today is about toast message into a spreadsheet.
Use script editor, run the next code source it with authorization:
1 2 3 4 5 | function myFunction() { var ss = SpreadsheetApp.getActive(); ws = ss.getSheetByName("Sheet1"); ss.toast("This is a toast message!"); } |
You will see a message toast in the bottom right area of the spreadsheet with this text: This is a toast message!