
Creator
2016-07-07
03:29 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
using above function to look at previous dimension
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
- Tags:
- above
1,880 Views
2 Replies

MVP
2016-07-07
03:33 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Do you have more than one dimensions? May be this:
If(Above(TOTAL [Group Name])=[Group Name],1,0)

MVP
2016-07-08
02:33 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
try
may be
If(Above(ALL [Group Name])=[Group Name],1,0)
1,682 Views
