Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello Power BI,
I need to dsiplay the latest ID record from an specific column on the totals row. I have done this before with dates but this time I only have ID number.
Thanks for your support.
Solved! Go to Solution.
Hi, @Anonymous
According to your description, I can clearly understand your requirement, and I created some test data to achieve your requirement, you can create a new measure like this to replace the original measure [Sum of Scrap percentage] in the matrix:
This is the test data I created:
Sum of Scrap percentage1 =
var _ID=CALCULATE(MAX('Table'[ID]),FILTER(ALL('Table'),[Customer]=MAX('Table'[Customer])))
var _sum=CALCULATE([Sum of Scrap percentage],FILTER(ALL('Table'),[ID]=_ID&&[Customer]=MAX('Table'[Customer])))
return
SWITCH(
TRUE(),
ISINSCOPE('Table'[Customer])&&ISINSCOPE('Table'[ID]),[Sum of Scrap percentage],
ISINSCOPE('Table'[Customer])&&NOT(ISINSCOPE('Table'[ID])),_sum)
And you can get what you want, like this:
You can download my test pbix file below
Thank you very much!
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Anonymous
According to your description, I can clearly understand your requirement, and I created some test data to achieve your requirement, you can create a new measure like this to replace the original measure [Sum of Scrap percentage] in the matrix:
This is the test data I created:
Sum of Scrap percentage1 =
var _ID=CALCULATE(MAX('Table'[ID]),FILTER(ALL('Table'),[Customer]=MAX('Table'[Customer])))
var _sum=CALCULATE([Sum of Scrap percentage],FILTER(ALL('Table'),[ID]=_ID&&[Customer]=MAX('Table'[Customer])))
return
SWITCH(
TRUE(),
ISINSCOPE('Table'[Customer])&&ISINSCOPE('Table'[ID]),[Sum of Scrap percentage],
ISINSCOPE('Table'[Customer])&&NOT(ISINSCOPE('Table'[ID])),_sum)
And you can get what you want, like this:
You can download my test pbix file below
Thank you very much!
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous Seems like MM3TR&R: (1) Matrix Measure Total Triple Threat Rock & Roll - Microsoft Power BI Community
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |