Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I'm trying to create the table above. Group and Item are dimensions. % is a measure calculated as the average value of binary column at the item level. How can I create the Max% column where it shows the maximum % of each Group?
I feel like it should be an aggregation function, but i'm really struggling to get anything to work. Any help would be greatly appreciated!
Hi, there
Check this expression highlighted in yellow
Hope this helps
ZZ
use this expression in a straight table with your dimensions:
=aggr(NODISTINCT max(%),Group)
Then If you are using % as expression before calculating MAX, then you can use the column name instead of formula and check.
Example:
=aggr(NODISTINCT max(column(1)),Group)