Forum Discussion
sandraemma
3 years agoFrequent Visitor
biggest value
- Anonymous3 years ago
Hi sandraemma ,
I created some data:
Here are the steps you can follow:
1. Create measure.
Find the entire data maximum: ALL_Max = MAXX( ALL('Table'),[Value])Find the maximum value of the data for each grouping: Group_Max = MAXX( FILTER(ALL('Table'), 'Table'[Group]=MAX('Table'[Group])),[Value])2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
2 Replies
- DOLEARY85Resident Rockstar
Hi,
you should just be able to use a MAX expression:
Measure = CALCULATE(MAX('Table'[Status])) - AnonymousNot applicable
Hi sandraemma ,
I created some data:
Here are the steps you can follow:
1. Create measure.
Find the entire data maximum: ALL_Max = MAXX( ALL('Table'),[Value])Find the maximum value of the data for each grouping: Group_Max = MAXX( FILTER(ALL('Table'), 'Table'[Group]=MAX('Table'[Group])),[Value])2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly