Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a requirement.
I have a column with integer values 1 and 2. I want to display them in a list box with Strring values like 'Incoming' for 2 and 'Outgoing' for 1. How can i achieve this.
Thanks a lot in advance!!!
May be create a new field in the script like this
LOAD Field,
Pick(Field, 'Outgoing', 'Incoming') as Field_Desc
FROM ....