I'm making a form in AppSheet that will be filled out by the user of the app. I have a table with questions for the columns. Question 1 contains an EnumList of answers, so the user can select multiple answers. What I want to do is display question 2 only if any of the answers in question 1 were selected. So if none were, then don't show question 2 so the user will answer question 3 next.

1

There are 1 best solutions below

1
On BEST ANSWER

On AppSheet

  1. Go to Data
  2. Open the corresponding table
  3. Go to Columns
  4. Click on the Edit button of the column to be hidden
  5. On the Show field, add formula, i.e. ISNOTBLANK([Fruit]) (in this example Fruit is the column name).

  1. Click Done