Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
LongDucVu
New Member

Help with Dax to calculate at rows level!!

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:  

 

LongDucVu_1-1680659454133.png

 

This is the current issue I have from sample 

LongDucVu_0-1680659297040.png

 

3 REPLIES 3
LongDucVu
New Member

@Greg_Deckler  Hi,

 

I read many post from you about subtotal and total calculation. Are you able to help me with this?

 

Many thanks!!

LongDucVu
New Member

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

 

 

 

amitchandak
Super User
Super User

@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

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.