Script completion
After a nightly cleanup script runs, toast says Cleanup done, 12 rows archived so the opener knows it finished.
A toast is a small temporary message that slides up at the bottom of the Google Sheets window and fades away without blocking work. Sheets shows toasts for actions like filter applied, link copied, or script finished. In Apps Script you can call SpreadsheetApp.getActiveSpreadsheet().toast() for gentle user feedback instead of a modal alert.
Use toasts for low-stakes confirmations: row archived, sync complete, validation passed, or background script finished without needing a click to dismiss.
Skip toasts for errors that require a decision, destructive actions, or security warnings. Use Browser.msgBox or a custom sidebar when the user must read and confirm.
Sheets UI shows native toasts for some built-in actions automatically.
In Apps Script, toast(title, subtitle, timeoutSeconds) displays a brief banner to the active user.
Keep messages short; toasts disappear and are easy to miss during fast editing.
Pair toasts with Logger.log for debugging when users report they did not see the message.
Do not spam toasts inside onEdit on busy columns; debounce or batch notifications.
Test on shared files so multiple editors understand toast timing during demos.
After a nightly cleanup script runs, toast says Cleanup done, 12 rows archived so the opener knows it finished.
Menu item Normalize phones runs regex cleanup and toasts Updated 48 cells instead of a blocking alert.
Helper script toasts Reminder: pick a status from the list when someone types free text in a validated column.
Next step for Toast notification
Jump to a related Better Sheets resource, or unlock the full tutorial library.
Watch how Toast notification works
Guides that explain Toast notification in more depth.
Make your data tasks simpler & efficient. Discover the power of automation in Google Sheets with a comprehensive guide that covers everything from triggers to scripts.
Read post →Nothing is better than Google Sheets. You just need to learn more about the unlimited power of Google Sheets. Functions, Formulas, Apps Script and more.
Read post →Dive into Google Sheets with Expert Insights. Free Tutorials, Templates & Tools Await You. Enhance Your Skills Today!
Read post →The onEdit trigger runs a script automatically when someone changes a cell in your spreadsheet. It is one of the simplest ways to make Sheets react to user input without clicking a custom menu. You define the function in Apps Script and bind it to the onEdit event for that file.
Read guide →Automation means work happens without repeating the same clicks every day: imports update, emails send, rows move, and dashboards refresh. In Sheets, automation usually stacks built-in features, Apps Script, and sometimes the Sheets API or add-ons. Start with the lightest tool that still solves the job.
Read guide →Data validation restricts what can be entered in a cell before bad data spreads through your model. Rules can enforce dropdown lists, number ranges, dates, text length, or custom formulas that return TRUE. Invalid entries can be rejected or warned with a note. Validation is the front door quality check for shared trackers and intake sheets.
Read guide →A sidebar is a vertical panel docked beside the spreadsheet grid. The Explore tab is a built-in sidebar. With Apps Script you can show a custom sidebar from HTML to build wizards, search tools, and forms without leaving the sheet. Add-ons from the Marketplace often register sidebar entries under Extensions.
Read guide →Done reading about Toast notification?
Membership unlocks 636+ tutorials, unlimited generators, and every template. Practical lessons. Zero fluff.
Need this once
Jump to a free tool or a single tutorial for this topic.
Learning Sheets for real
Unlock the full library, generators, and templates with membership.