Discussion Board for collaboration related to QlikView App Development.
I have a straight table consisting of three dimensions: Conference, Division, Team
and some various expressions: Games played, wins, losses, points, etc...
What I'm attempting to do is rank each team by Division, Conference and overall separately. I need this for a higher-level ranking. Ranking by Division and Overall is not a problem -- RANK( [Points] ), RANK( TOTAL [Points] ). Where I run into a problem is ranking by the middle dimension, Conference. Is there a way to use TOTAL<Field> to achieve this? I've tried to think of other solutions, but I must admit that I'm stumped on this one. I'm sure it's something simple that I'm just overlooking, but I appreciate any response that I can get.
Thanks,
-J
Yes, TOTAL is exactly the right syntax for this solution. The only condition is that the Field is one of the Chart Dimensions.
Alternatively, I suppose you could do something similar using Advance Aggregation function AGGR()
I actually answered my own question. You are correct with the advanced aggregation, though:
AGGR( RANK(SUM( Schd.Points) ), Divisions.Conference, Schd.Team )
Thanks for the help!
Jeff