Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I am trying to get the total amount from the latest transaction for all clients. See below for the sample table:
When creating a table in PowerBI, I get the following where the total only reflects the last 2 latest transaction (75) instead of the total of the entire records (235):
Here's my measure (Sheet1 is the table name):
_Latest amount = VAR _maxd = maxx(Sheet1, Sheet1[Date].[Date]) RETURN CALCULATE (SUMX(Sheet1, Sheet1[Amount]), Sheet1[Date] = _maxd)
Can someone help and take a look into this?
Thanks in advance!
Solved! Go to Solution.
write another measure like this
Fixed = SUMX(VALUES(Sheet1[Client]), [_Latest amount])
write another measure like this
Fixed = SUMX(VALUES(Sheet1[Client]), [_Latest amount])
Thank you so much! This helps a lot! 🙂