Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am trying to rank the PPV with the 10 least and 10 greatest entries for item. I tried using the following in the expression for the EXT Variance Amt / PPV value, and it returned 1 for all rows.
if(rank( -([Ext Variance Amt / PPV]), 0, 1)<=10, Red(),
if(rank( ([Ext Variance Amt / PPV]), 0, 1)<=10, Green()
))
See the attached screen shot also.
or use
if(rank(TOTAL -[Ext Variance Amt / PPV], 0, 1)<=10, Red(),
if(rank(TOTAL [Ext Variance Amt / PPV], 0, 1)<=10, Green()
))
Hi Tricia, you tried with rank(TOTAL ... )? I can be more helpful with a sample data
Hi,
Tricia,
please see my attached file its just an example i hope it helps.
Regards
André Gomes
Andre,
Not very helpful as I'm not wanting to use a button to show the ranking. Thanks!
Attached is a simple example on how to do it using 'Visual Cues' dynamically.
Hope it helps.
You'll need to do an aggregation on the ranks. Every item will be regarded in isolation on a row basis which will always result to rank=1.
I'm having syntax issues using aggr(rank....
The below works with one dimension but I have multiple.
if(rank( -[Ext Variance Amt / PPV], 0, 1)<=10, Red(),
if(rank( [Ext Variance Amt / PPV], 0, 1)<=10, Green()
))
Help with syntax is appreciated.
Note: The above expression is defined as text color for the expression 'Ext Variance Amt / PPV' field.
Add mode 4 instead of 1. 0,4 instead of 0,1
or use
if(rank(TOTAL -[Ext Variance Amt / PPV], 0, 1)<=10, Red(),
if(rank(TOTAL [Ext Variance Amt / PPV], 0, 1)<=10, Green()
))