Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I have a problem that I cannot solve.. I have a simple pivot with
Month,
Day,
Column A
And i would like to show in the pivot just the day of this particular month where 'Column A' has the max value..in this case I would like to show for August just the day 27
Do you have suggestion how to do it??
I have tried with MAX( AGGR (COUNT(....), Month, Day)))
but I dont have the expected result..
Thx to all
Hi,
Try FirstSortedValue() like this
=FirstSortedValue(Date, -Sum([Column A]))
Hope this helps you.
Regards,
Jagan.
IN PROPIERTIES
SORT
YOU CAN ADD SORT BY EXPRESSION ....in day....
THEN CHEK AND ADD (THE EXPRESSION OF COLUMN A) PUT DESCENDING
HOPE THAT HELPS YOU
TRY BELOW...
=if(aggr(rank(sum([Column 1])),Day)<=1,[Column 1])
Close. Try if(count(ColumnA)=max(total <Month> aggr(count(ColumnA),Month,Day)),count(ColumnA))