Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want to do something like
If(Above([Group Name])=[Group Name],1,0)
Basically just want an expression that looks at the row above to see if the dimension Group Name is equal to the Group Name on current row.
Steve
Do you have more than one dimensions? May be this:
If(Above(TOTAL [Group Name])=[Group Name],1,0)
try
may be
If(Above(ALL [Group Name])=[Group Name],1,0)