Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Fergie93
Contributor
Contributor

Sorting a field

I have a data set that has been exported from sharepoint to excel. 

one of the fields is a drop down, as an example the data shows with the field as; 

Car;Coffee;Dog

the order can change as well to show as 

Dog;Car;Coffee;None 

 can i within Qlik sort the field to show the options in alphabet order ?

 

thanks

 

Labels (3)
3 Replies
vinieme12
Champion III
Champion III

in the properties panel  under "Sorting"

uncheck the highlighted toggle to "Custom"

Then check on Sort Alphabetically

Capture.PNG

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
Fergie93
Contributor
Contributor
Author

Morning. Thank you I should have said looking for a solution in the Data Load Editor rather than in charts 

vinieme12
Champion III
Champion III

You can using the "Order By" but , the only limitation is that "Order By" only works with Resident Load

 

Example

 

temp1:

load * From SomeExcelFile;

 

NOConcatenate

Main:

Load * Resident temp1

Order by Category ASC;

drop table temp1;

 

 

but , how the data is sorted in the model would not make any difference as you can sort the field in visualizations

unless you are making some transformations to the data that needs sorting

 

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.