Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
i have a field that contains "leaving data" - if the employee left or fired and the reason.
left starts with V and Fired start with I .
Example V - Employee found a better place
I - Employee didnt do his job
i want to create a list box that will show only 2 values of "Fired" and "left" out of all the 100 reasons and also to show the Fired/left in the table i've built - is it possible?
Try expression like:
If(Left(trim('leaving data'),1)='V', 'Left', If(Left(trim('leaving data'),1)='I', 'Fired'))
Hi ,
Script wise it went fine , but i could not see the new field when i created a list box i added the syntex that i've wrote
there is no field at all, i cant choose it (not there) on the fields list
Did you run reload after modifying the script?
yes 🙂
yes sure