Hi, I know this is easy, but I’ve long since forgotten how it is done:In a form, I have a dialog box (DialogBox) allowing multiple values, with aliases for values:
one | 1
two | 2
three | 3
etc…
Let’s say I save a document with values “one” and “three” checked. DialogBox = 1,3 now in that document.
When I create a view and select DialogBox as one of the columns, I get “1,3” for that record. I can’t figure out how to show “one,three” as the result though.
I used the column formula:
@If(DialogBox=“1”;“One”;DialogBox=“2”;“Two”;DialogBox=“3”;“Three”;“No Number Specified”)
The result is just “One” in the new view. It grabs the first condition apparently and quits. Is this a glitch or what am I missing? Thanks!!
Todd