Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
HI,
Problem: How can I calculate last invoice amount?
Simplified Model:
Customer Table with the following column:
CustomerID (Thera are only unique customers' id)
Sales Table with the following columns:
CustomerID | InvoiceNo | ProductName | ProductPrice | ProductQuantity| InvoiceAmount | InvoiceDate
Customer Tabel is conected to Sales Table with 1-to-many relations.
Measure:
#LastOrderDate = LASTDATE(Sales[Date])
My tabel report has the following columns:
Customer[CustomerID] | #LastOrderDate |
I would like to add 1 more measure to the table report to calculate LastOrderValue.
Thx for support!
Paweł
Solved! Go to Solution.
What you want is an application of what we call "Last Non Empty" order. There are 4 types of Last Non Empty patterns, and if you want to dive deep into it, I would recommend you to one of my old blogs -
http://sqljason.com/2012/06/lastnonempty-in-tabular-mode-part-1.html
If you just want the solution, my understanding is that you want the last non empty order for all customers on that date.
Sales_LNE := CALCULATE ( SUM ( Sales[Sales] ), LASTDATE ( Sales[Date] ) )
This is the first pattern from my blog (and you can also use a filter() instead of the lastdate()). If the last date is different for every customer (which means, if you dont get orders for all customers on each date), you might want to use the second pattern with SUMX.
What you want is an application of what we call "Last Non Empty" order. There are 4 types of Last Non Empty patterns, and if you want to dive deep into it, I would recommend you to one of my old blogs -
http://sqljason.com/2012/06/lastnonempty-in-tabular-mode-part-1.html
If you just want the solution, my understanding is that you want the last non empty order for all customers on that date.
Sales_LNE := CALCULATE ( SUM ( Sales[Sales] ), LASTDATE ( Sales[Date] ) )
This is the first pattern from my blog (and you can also use a filter() instead of the lastdate()). If the last date is different for every customer (which means, if you dont get orders for all customers on each date), you might want to use the second pattern with SUMX.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
84 | |
76 | |
52 | |
38 | |
34 |
User | Count |
---|---|
95 | |
69 | |
55 | |
52 | |
46 |