class FormApp method .addMultipleChoiceItem()

FormApp is the Apps Script service.

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

What it does

Adds a multiple-choice question to the form.

Why it's used

  • Add dropdown or radio questions from your options tab.
  • Keep form choices in sync with a master list in Sheets.

Common errors

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

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.addMultipleChoiceItem().

Browse the blog