Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi,
I have a summary table which is grouped by "Type", there are x number of years for each type but the table sums each years to return one value for each Type. I then need to return the MAX value overall but I can only seem to return the Max value year of each Type instead of one overall highest number.
Example of the Table and desired result is below - for Type B I need to return the Max overall, not Type B Max:
Any help greatly appreciated, thanks!
Table: | ||
Type | Amount | Year |
A | 10000 | 2019 |
A | 9000 | 2018 |
A | 8000 | 2017 |
B | 4000 | 2019 |
B | 3000 | 2018 |
B | 2000 | 2017 |
Desired result: | ||
Type | Amount | Max |
A | 27000 | 27000 |
B | 9000 | 27000 |
Solved! Go to Solution.
Hi @Anonymous :
We can create following measurs to meet your requirement:
Measure = SUM('Table'[Amount])
Measure 2 = MAXX(ALLSELECTED('Table'[Type]),[Measure])
If it doesn't meet your requirement, Please show the exact expected result based on the Tables that you have shared.
Best regards,
Hi @Anonymous ,
How about the result after you follow the suggestions mentioned in my original post?Could you please provide more details about it If it doesn't meet your requirement?
Best regards,
@Anonymous
sum by type
Hi - thanks I tried this and it works but I have realised there is a rogue amount in a year 2020. I have a filter on all pages excluding year 2020, and have changed your solution to say AllExcept YOA but the rogue amount still comes through. Any ideas as to how to modify your solution to allow the measure to read the filter and ignore 2020 year please?
I want to avoid deleting rows in the data source by the way
I might have been over-complicating this. I simply need to return the higherst value in the below measure (but the measures change depending on filters selected:
Measure
4838
4831
3540
So I need a measure which returns 4838 for all rows in this example..
Hi @Anonymous :
We can create following measurs to meet your requirement:
Measure = SUM('Table'[Amount])
Measure 2 = MAXX(ALLSELECTED('Table'[Type]),[Measure])
If it doesn't meet your requirement, Please show the exact expected result based on the Tables that you have shared.
Best regards,
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
92 | |
87 | |
84 | |
65 | |
49 |
User | Count |
---|---|
140 | |
114 | |
110 | |
59 | |
59 |