Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Thank you Everyone!
Last weekend I've been fighting with my expression to highlight the maximum Quantity amount as showed here:
I would like the Brazil Quantity 3,358,230 to be in green.
I used different expressions:
=if((Max(Quantity), Quantity rgb(0,255,0), Quantity)
=IF(Sum( {$<Quantity={"<=$(=Max(Quantity))"}>} Quantity),rgb(0,255,0)
=firstsortedvalue( Quantity, -Aggr(Max([Quantity]),Quantity,rgb(0,255,0)))
Unfortunately none is working! Again maybe my expressions are totally wrong.
Thanks for your advise and insight!
I assume you need help with the background color (or maybe text color) expression for Quantity column. Try this:
if(Quantity=max(total Quantity, rgb(0,255,0)))
Edit: if I got it wrong, upload your app.
I assume you need help with the background color (or maybe text color) expression for Quantity column. Try this:
if(Quantity=max(total Quantity, rgb(0,255,0)))
Edit: if I got it wrong, upload your app.
Thanks Michael!
Yes, for either the text or the Background color.
I'm going to try this out tonight.
Thanks again!
This rgb looks too light for text. Well, you'll figure out.
Are you first summing the quantities from multiple records in your data model to get a by country sum ?
If that is the case I'm wondering if you need aggr() here to first sum() and then get the max of the sums.
if( sum(Quantity)=max(total aggr( sum(Quantity), pays) ), rgb(0,255,0)))