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.
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
User | Count |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
12 | |
11 | |
7 | |
6 |