Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have a list box with the below field values:
1. AT
2. Al
3. Non
The values in the list box should be displayed in the order:
Al
Non
AT
Can anyone please help with the sorting?
Thanks,
Asma
Hi Asma,
Try sort expression as
Match(Field_Name, 'Al','Non','AT')
have already given the best solution, though you can try like this as well?
Replace the same expression with following one:
IF(FieldName='AI',1,
IF(FieldName='Non',2,
IF(FieldName='AT',3)))
Asma,
See the attachment.
Thanks,
AS
Thanks Tamil Nagaraj for the quick reply!!
It worked..
Did u tried my suggestion???
Thanks,
AS
Hi Amit,
Thanks for the reply!!
I tried your solution as well. It works too.
Just wanted some clarification on the use of dual in the expression.
Duel() is nothing but just assigned a numeric value to a string value. check this?
If these field values came from inline load in script, just change order in script and check box "Load Order" in Sort tab.