Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
21 | |
15 | |
14 | |
11 | |
7 |
User | Count |
---|---|
25 | |
24 | |
12 | |
12 | |
11 |