How to Display a Custom alert message in Google Sheet
Use this code in [Google Script Editor] to display a simple user alert . It can also be used with formula calculations to check for invalid or blank cell values in a google spreadsheet.
function SimpleAlert()
{
var ui = SpreadsheetApp.getUi();
ui.alert('Write your Text Message Here');
};
No comments:
Post a Comment