Forum Discussion
Range Maximum and Minimum Value by category
I already created the sample file for your reference. Hope this can help you to understand the scenario.
https://temp-file-share.web.app/d/S6DqJjGRUX
Regards,
NickzNickz
Hi,
Since the scale of the entries in the Category column are different, i suggest that you insert a last Pivot column step to get the data in this shape. Now write your measures
- NickzNickz2 years ago
Helper IV
- Ashish_Mathur2 years ago
Super User
That is the formula you should be working with. Just remove the Year and Month colums.
- NickzNickz2 years ago
Helper IV
Dear Ashish_Mathur ,
I have my reason why I need my table to be like this ...
Below is the result of the highest amount by category:
If my chart1 only filters data for Purchase and Loan, the highest amount is 11,947.51.
If my chart2 only filters data for Rental and Profit, then the highest amount is 1,337,47.
I need to use this value as an indicator when creating the measure and put it in the Y-axis range for maximum. I also need to create for Min range too.Regards,
NickzNickz
- Ashish_Mathur2 years ago
Super User
Hi,
Does this measure work?
Measure = sum(Data[Amount])
Measure 1 = MAXX(ALLSELECTED(Data[Category]),[Measure])
Measure 2 = MINX(ALLSELECTED(Data[Category]),[Measure])