So 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.
CodePudding user response:
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