Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Ron1
Partner - Creator
Partner - Creator

How to Sort using conditions like, If My Country name is 'FRANCE', it will appear at the very bottom

How to Sort using conditions like, If My Country name is 'FRANCE', it will appear at the very bottom of the table

1 Solution

Accepted Solutions
Uday_Pasupuleti
Partner - Creator III
Partner - Creator III

Got to your Country dimension under the Sort options and use the following expression in sort by expression option

if(Country='France',1,0) 

then under the drop down select "Ascending"

View solution in original post

2 Replies
Uday_Pasupuleti
Partner - Creator III
Partner - Creator III

Got to your Country dimension under the Sort options and use the following expression in sort by expression option

if(Country='France',1,0) 

then under the drop down select "Ascending"

Ron1
Partner - Creator
Partner - Creator
Author

Thank you very much Uday. It worked