Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I want to show list box (Name) values based on Flag column values like if Flag is 0 then Name corresponding to Flag=0 should only show in listbox. like -
Name | Flag |
Mahendra | 1 |
Rajiv | 0 |
Pranav | 0 |
Vaibhav | 1 |
List box should show only -
Name |
Rajiv |
Pranav |
like this??
hi
Try this.
If(Flag= 0, Name)
In the 'Field' select expression and use this:
=If(Flag = 0, Name)
HTH
Andy