
Not applicable
2009-07-13
05:42 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
highlight the column with the highest value
is there a simple way to highlight the column with the highest value?
I know, i can compare each column with each other, but the formulas are very complex, so the calculation isn't performant.
Thank you for your help
ppcfox
316 Views
1 Reply


Creator
2009-07-13
06:27 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
In the background Colour property of teh used Dimension on the Dimension tab
use something like
=
IF(rank(sum(Measure_Name)) = '1',rgb(255,0,0))
this example makes background colour 'red'
158 Views
