Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hello, I've seen this topic brought several times, but I can't find solution for my problem.
I have a table with files and an amount for each file(each file is divided in subfiles), and some files have several versions at several dates with different amount, I want to show the last value at a specific date, base on the version, and have the following formula :
Total amount 2 =
CALCULATE(
SUM('Table'[Amount]),
'Table'[Version rank] = MAX('Table'[Version rank])
)it works fine but the total is incorrect, as show here :
on the left is the amount I should have, but which is not dynamic.
I have tried this formula :
Total amount 2 =
SUMX(Values('Table'[N° file]),
CALCULATE(
SUM('Table'[Amount]),
'Table'[Version rank] = MAX('Table'[Version rank])
)but it doesn't work, I keep having the total of the max version rank, and not the sum of the lines. I tried using "var _vrank = MAX('Table'[Version rank]" in my formula but it didn't changed a thing.
Which leads to 2 questions :
Thank you for your help
Solved! Go to Solution.
@B_kaydo First, please vote for this idea: https://ideas.powerbi.com/ideas/idea/?ideaid=082203f1-594f-4ba7-ac87-bb91096c742e
This looks like a measure totals problem. Very common. See my post about it here: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376
Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907
Also: https://youtu.be/uXRriTN0cfY
And: https://youtu.be/n4TYhF2ARe8
hi @Greg_Deckler thank you for you answer, the "hasonefilter" solution worked fine !
Final word allowed me to resolve the total issue
@B_kaydo First, please vote for this idea: https://ideas.powerbi.com/ideas/idea/?ideaid=082203f1-594f-4ba7-ac87-bb91096c742e
This looks like a measure totals problem. Very common. See my post about it here: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376
Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907
Also: https://youtu.be/uXRriTN0cfY
And: https://youtu.be/n4TYhF2ARe8
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 48 | |
| 45 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 69 | |
| 63 | |
| 32 | |
| 31 | |
| 23 |