Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi fellas,
When I analyze my data with pivot chart, here is my result:
With set analysis which result on straight table I want to get is this:
For "Amount of max" column, this formula works fine:
COUNT(DISTINCT IF(AGGR(NODISTINCT MAX(MonthDiff),SourceSet)=MonthDiff,ID))
But I want to do this without AGGR function because when adding a new filter to the table with another field, that doesn't work properly.
When I use this formula, it does work for only first row:
COUNT({$<MonthDiff={'$(=MAX(MonthDiff))'}>} DISTINCT ID)
Any idea?
Thanks a lot in advance.