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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Aamir2021
Advocate I
Advocate I

How to get DAX measure for Unit Price*Quantity-Discount 20%

Hi,

I want to calculate with the help of DAX below measure

 

Unit Price * Quantity - Discount 20%

How to get the DAX measure?

 

I would be grateful if you could help me with this problem.

 

Thank you

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Aamir2021 , Try a measure like

Sumx(Table, ([Unit Price] * [Quantity])*0.8)

View solution in original post

5 REPLIES 5
v-jayw-msft
Community Support
Community Support

Hi @Aamir2021 ,

 

You will need relationships between these tables. That would help Power BI to get the corresponding Quantity for specific Unit Price along with the Discount. Perhaps you have a product column in the table?

 

Best Regards,

Jay

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.
amitchandak
Super User
Super User

@Aamir2021 , Try a measure like

Sumx(Table, ([Unit Price] * [Quantity])*0.8)

Thanks for your suggestion.

Hi @amitchandak,

Thanks for your reply. However, it does not work.

There are three tables. The first table has Unit Price, second table has Order Quantity and last table has Discount allowed in percantage. 

 

My question is the Unit price is 15,  Order Quantity is 20 and Discount allowed is 20% 

So how can we calculate dax to get the Sales after discount?

I hope you get the my point.

 

 

@Aamir2021 , You need a common dimension. assume you have these measures from two tables

[Unit Price] , [Quantity] and common item dimension

 

Sumx(values(item[Item ID]), calculate(([Unit Price] * [Quantity])*0.8)))

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors