class SpreadsheetApp method .showModalDialog()

SpreadsheetApp is the Apps Script service.

.showModalDialog() is the method name you will see after a dot in your code.

What it does

Opens a modal dialog that blocks interaction with the sheet.

Why it's used

  • Collect input or confirm a destructive action before it runs.
  • Show a settings form the user must complete first.

Common errors

  • Forgetting parentheses on showModalDialog. Write SpreadsheetApp.showModalDialog(), not SpreadsheetApp.showModalDialog or showModalDialog by itself.
  • Skipping dots between chained calls. Each step needs a dot, like SpreadsheetApp.getActiveSpreadsheet().getSheetByName('Data').showModalDialog().
  • Adding spaces where they do not belong. Write SpreadsheetApp.showModalDialog(), not SpreadsheetApp .showModalDialog(), SpreadsheetApp.showModalDialog (), or SpreadsheetApp . showModalDialog().
  • Wrong capitalization. Use SpreadsheetApp and showModalDialog, not spreadsheetapp or showmodaldialog.

Explore

Related methods

  • .showModelessDialog()

    Opens a dialog the user can use while still working in the sheet.

  • .prompt()

    Shows a dialog that asks the user for text input.

  • .alert()

    Shows a simple alert box with an OK button.

  • .activate()

    Makes a sheet or range the active selection.

  • .showSidebar()

    Opens a custom sidebar built with HtmlService.

Better Sheets tutorials

Big Year - a Whole Year in One Google Sheets Tab

Big Year - a Whole Year in One Google Sheets Tab

Get "Big Year" for free via Gumroad. Get perspective on your 2024 plan ...
Create Navigation Buttons in Sheets to Other Sheets

Create Navigation Buttons in Sheets to Other Sheets

Add a button to go to another sheet inside your sheet.
Google Sheets Stories? No! But we'll add timestamped video notes to your google sheets.

Google Sheets Stories? No! But we'll add timestamped video notes to your google sheets.

There was a stories craze. Every app/platform/business was adding 24 hou...
Sheet Stories / Video Notes + Clear 24 Hour Old Videos

Sheet Stories / Video Notes + Clear 24 Hour Old Videos

Revolutionary Method to Manage Your Video Stories! Learn how to delete o...

Related blog posts

Written guides about SpreadsheetApp.showModalDialog().

Browse the blog