Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I'm trying to create a stacked bar chart from a table with the following columns:
Customer is defined as a Dimension.
Max(Exposure) is defined as an Expression.
How can one return the minimum Exposure_Limit for each Customer/Max(Exposure) pair.
Thank you,
Ben
you can get a calculated dimension with aggr(max(exposure),customer)
Thanks for the help.