Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I want to give a list box expression: If the values of age are 30 and 50, then show age.
It works when I write this expression : =if([Age]='30', Age)
How do I also include the value 50?
It throws an error when I try to write the expression : if([Age]={'30', '50'}, Age)
Thanks
Hi,
Use If(Match(Age, 30, 50), Age) it will work