class FormApp method .getEditUrl()

FormApp is the Apps Script service.

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

What it does

Returns the link to edit the form.

Why it's used

  • Email yourself a link to tweak the form later.
  • Store the admin URL next to the form name in a directory sheet.

Common errors

  • Forgetting parentheses on getEditUrl. Write FormApp.getEditUrl(), not FormApp.getEditUrl or getEditUrl by itself.
  • Skipping dots between chained calls. Each step needs a dot, like FormApp.getEditUrl().
  • Adding spaces where they do not belong. Write FormApp.getEditUrl(), not FormApp .getEditUrl(), FormApp.getEditUrl (), or FormApp . getEditUrl().
  • Wrong capitalization. Use FormApp and getEditUrl, not formapp or getediturl.

Explore

Related methods

Better Sheets tutorials

No tagged tutorials yet. Fetch Apps Script from the harvest table and this page fills automatically.

Related blog posts

Written guides about FormApp.getEditUrl().

Browse the blog