The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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
Solved! Go to Solution.
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
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)))
User | Count |
---|---|
16 | |
8 | |
6 | |
6 | |
5 |
User | Count |
---|---|
23 | |
13 | |
13 | |
8 | |
8 |