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.
Asked
Active
Viewed 1,335 times
1 Answers
2
On AppSheet
- Go to Data
- Open the corresponding table
- Go to Columns
- Click on the Edit button of the column to be hidden
- On the Show field, add formula, i.e.
ISNOTBLANK([Fruit])
(in this exampleFruit
is the column name).
- Click Done

Rubén
- 34,714
- 9
- 70
- 166
-
Maybe you have a typo or using it incorrectly ---> [ISBLANK()](https://support.google.com/appsheet/answer/10107337?hl=en) – Rubén Aug 09 '22 at 22:44