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”
1 Like
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
1 Like
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
1 Like
You are the man! Thanks again, that is exactly what I needed.
1 Like