
Contributor
2022-10-05
04:11 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Max of one field based on max of another field at script level
Hello guys,
as you can see I have a table similar to the one in the screen.
I would need an additional table created like:
Distinct of the Stores; Select the max of the cycle, and I would need the Prog value associated with the max of the cycle
I would need an additional table created like:
Distinct of the Stores; Select the max of the cycle, and I would need the Prog value associated with the max of the cycle
427 Views
1 Reply


Employee
2022-10-05
07:04 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This is possible with the following configuration in a table:
Dimension 1: Store
Dimension 2: aggr(Max(Cycle), Store)
Measure 1: Max(Prog)
399 Views
