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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Data sample is:
Product Date Amount
1 01/02 $100
1 02/15 $200
2 02/15 $300
2 03/31 $400
I am trying to get:
1 - Last Date and Amount per Product
2 - Total Amount of all items in #1
Desired output is:
Product Date Amount
1 02/15 $200
2 03/31 $400
Total: $600
I can get #1 via many methods, but my Total row is always only showing the Amount of the last Date over all the data (or other issues) but not the desired output. ie: Total row only shows 03/31 value of $400, but I cannot get it to include the Product 1 02/15 Amount of $200 so that my total is $600 as desired.
Solved! Go to Solution.
Hi,
Here is one way to do this with a filter measure:
data:
dax:
Measure 25 is just a sum measure for getting the total. For total amount of items you can use count.
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/
Proud to be a Super User!
Hi,
Here is one way to do this with a filter measure:
data:
dax:
Measure 25 is just a sum measure for getting the total. For total amount of items you can use count.
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/
Proud to be a Super User!
That worked perfectly. I sure did over-engineer it 😞
Thank you!