Hi Visokio - I have been trying to create a formula that will give me a simple Ranking. If I use the built-in function RANK and base this on application name the result set will be 1, 124, 300, 500, etc. What I need is a true application ranking 1,2,3,4. Oracle has a great built in function to do this, DENSE_RANK(). Any ideas on a work around or did I miss a function I could use that is already built into the tool? Here is what I have so far RANK([Application Name]).
Hi - I have done this before. You need to do the following:
1. SUBSET_SUM([Value],Subset[Application Name]), then RANK the result. 2. Aggregate by [Application Name] and change [Rank] Aggregation function to Formula Result.