Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
mahendragaur
Creator
Creator

Custom Sort not working

I am trying below expression to custom sort value but it is not working. Any suggestion please

Match(Dim,'Car','Bus','Plane','Boat')

Labels (1)
2 Replies
anushree1
Specialist II
Specialist II

Hi,

Please check the attachment, it seems to work for me

vijetas42
Specialist
Specialist

=Match(Dim,'Car','Bus','Plane','Boat')this should work if not, you can use if condition like below,

if(Dim='Car',1,if(Dim='Bus',2,if(Dim='Plane',3,if(Dim='Boat',4))))

Regards,

Vijeta