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

Announcements
AWS Degraded - You may experience Community slowness, timeouts, or trouble accessing: LATEST HERE
cancel
Showing results for 
Search instead for 
Did you mean: 
amien
Specialist
Specialist

sorting issue

What i want is that all Teams are grouped first (Based on the first 3 letters) .. and then ordered by Progress. See attachment.

See BBB Team should look like this:

BBB.005 , Text, 60
BBB.012 , Text, 40
BBB.022 , Text, 30
BBB.002 , Text, 15
BBB.003 , Text, 10
BBB.004 , Text, 10


LOAD * INLINE [
Team, Description, Progress

AAA.002 , Text, 5
BBB.002 , Text, 15
BBB.003 , Text, 10
BBB.004 , Text, 10
BBB.005 , Text, 60
BBB.012 , Text, 40
BBB.022 , Text, 30
CCC.027 , Text, 5
CCC.028 , Text, 65
CCC.032 , Text, 55
CCC.033 , Text, 30
CCC.039 , Text, 15
];


1 Solution

Accepted Solutions
oxiofrt
Partner - Creator
Partner - Creator

Infact the matter is that you would like to sort the same column (Team) by 2 sorts : left(team,3) first and then progress.

In straight table, you can hide columns (you can't with pivot table). But you will not have subtotals... (see attachment)

View solution in original post

4 Replies
oxiofrt
Partner - Creator
Partner - Creator

Hope this will help.
If first 3 caracters are the team (and probably last 3 are the members of the team), you should probably create the team dimension in the script.

amien
Specialist
Specialist
Author

hi

the output is ok .. only think is that i dont want to see AAA dimension .. when i remove that one .. it is just sorted on progress and not on team anymore

oxiofrt
Partner - Creator
Partner - Creator

Infact the matter is that you would like to sort the same column (Team) by 2 sorts : left(team,3) first and then progress.

In straight table, you can hide columns (you can't with pivot table). But you will not have subtotals... (see attachment)

amien
Specialist
Specialist
Author

Thanks