Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi guys,
I need to filter some values in a selection box. i need to show only a few values for selection.
for eg, i have the values from A to Z in the field Alphabets, I want to show only these in the Selection box " A,E,I,O,U".
I tried to use the following the expressions but its not working.
if(Alphabets = { 'A','E','I','O','U'}, Alphabets)
if(Alphabets = ( 'A'&'E'&'I'&'O'&'U'), Alphabets)
try this
if(match(fieldname,'A','E','I','O','U'),fieldname)