Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi,
I am trying to calculate the total price as shown below.
DAX measure i am using is = sum(quantity) * sum(price)
Instead of caluclating this way : (10 *4) + (20*5) + (30*6)
i am getting total based on this logic: (10+20+30) * (4+5+6)
How to create a measure for this logic
(10 *4) + (20*5) + (30*6)
I only need to show the entire total.
Category | Name | Quantity | Price | Total | |
Fruits | Apple | 10 | 4 | 40 | |
Fruits | orange | 20 | 5 | 100 | |
Fruits | banana | 30 | 6 | 180 | |
320 | Expected Outcome | ||||
60 | 15 | 900 | This is outcome i am getting in Power BI |
Solved! Go to Solution.
Hi @Sandhya877
to force summing the visible values
Measure =
SUMX (
SUMMARIZE ( 'Table', [Category], [Name] ),
CALCULATE ( SUM ( [Quantity] ) * SUM ( [Price] ) )
)
Hi @Sandhya877
to force summing the visible values
Measure =
SUMX (
SUMMARIZE ( 'Table', [Category], [Name] ),
CALCULATE ( SUM ( [Quantity] ) * SUM ( [Price] ) )
)
Thank you. It worked.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
24 | |
12 | |
11 | |
10 | |
9 |
User | Count |
---|---|
18 | |
14 | |
14 | |
13 | |
12 |