March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi,
I'm trying to calculate price impact base on fact sales data:
Sales data contains sales information by invoices date, customer number and product.
My price impact formular is : (Average selling price MTD - Average selling price same month last year)* Qty current month.
The problem is the sub-category does not add up from rows level calculation.
below is my dax:
This is the current issue I have from sample
@Greg_Deckler Hi,
I read many post from you about subtotal and total calculation. Are you able to help me with this?
Many thanks!!
Hi Amit,
Thanks a lot for your response.😀
I got all sales, qty, asp measure already but when I perform the calculation of price impact with dax formular above does not add at at category/subcategory.
If you look at total price impact above is 79K which is in correct.
Thanks again
@LongDucVu , with help of the date table, you should be able to get the price of this month vs last month
Assume you have Avg price measure already
MTD = CALCULATE([Avg price],DATESMTD('Date'[Date]))
last MTD = CALCULATE([Avg price],DATESMTD(dateadd('Date'[Date],-1,MONTH)))
last month = CALCULATE([Avg price],previousmonth('Date'[Date]))
MTD = CALCULATE([Avg price],DATESMTD('Date'[Date]))
last MTD = CALCULATE([Avg price],DATESMTD(dateadd('Date'[Date],-1,MONTH)))
last month Sales = CALCULATE([Avg price],previousmonth('Date'[Date]))
divide([MTD] -[Last MTD], sum(Table[Qty]) )
Time Intelligence, Part of learn Power BI https://youtu.be/cN8AO3_vmlY?t=27510
Time Intelligence, DATESMTD, DATESQTD, DATESYTD, Week On Week, Week Till Date, Custom Period on Period,
Custom Period till date: https://youtu.be/aU2aKbnHuWs&t=145s
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
23 | |
16 | |
15 | |
7 | |
6 |
User | Count |
---|---|
33 | |
29 | |
16 | |
13 | |
12 |