Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I want to show only specific values in my list box. I wrote the below expression but it shows nothing in the list box
=if(Type='Gross' and 'Net',Type)
I infact, want to show only 2 values ie Gross and Net in the Type list box(ie field Type).
If(Type='Gross' or Type='Net,Type)
If(Type='Gross' or Type='Net,Type)
Try this:
=If(Type='Gross' or Type='Net')
=if(Match(Type,'Gross','Net'),Type)