Need a form entry to only appear if criteria met from prior entry

I have a field that is Enum, that has a number of choices and one of them is "Other." I want to have another entry item appear only if "Other" is selected. I tried using "Show_If" but that does not seem to work. I entered the following and it seems to accept it, but then when I save the app it gives an error says it has an invalid show_if constraint:

"show_if"[Type_of_Incident]="Other"

Solved Solved
1 5 104
2 ACCEPTED SOLUTIONS

Hey man,

Show_If ain't no AppSheet function ๐Ÿ˜†
Just use [EnumFieldName] = "Other" in the Show_If section of that other entry field

View solution in original post

Hey,

you could try something like:
ISNOTBLANK([PriorImageField])

in the Show_If section of the ImageField

View solution in original post

5 REPLIES 5

Hey man,

Show_If ain't no AppSheet function ๐Ÿ˜†
Just use [EnumFieldName] = "Other" in the Show_If section of that other entry field

Thanks. Sorry still learning. Everything I found when searching turned up Appsheet and Show_if function so *shrug

Is there any way to have am image field that only displays if the prior image field has one selected?

Hey,

you could try something like:
ISNOTBLANK([PriorImageField])

in the Show_If section of the ImageField

You are the man! Thanks again, that is exactly what I needed.

Top Labels in this Space