HIya,
Is there a way to make a Show_If from a EnumList ?
I.e I want the box to show if the appropriate selection has been made in the enumlist.
I keep getting errors.
Thanks
HIya,
Is there a way to make a Show_If from a EnumList ?
I.e I want the box to show if the appropriate selection has been made in the enumlist.
I keep getting errors.
Thanks
You need to use the IN function and then your may need to wrap your enumlist in the LIST function
IN(“Value”,[EnumList]) should be enough if I understood your request correctly.
Thanks very much …
@Aleksi_Alkio
Can this be done with multiple options in the show_if? So if they select more than I item i want the appropriate box appearing.
thank you
Then you could use OR expresion with the IN. Like… OR( IN(“ValueA”,[EnumList]), IN(“ValueB”,[EnumList]))
@Aleksi_Alkio Thanks again, works.
Translate