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.
I have following table in BI.
Item | Cost |
18" Alloy | -23000 |
20" Alloy | 31000 |
Air Bag | 5000 |
Deatc | 250 |
I want to subtract 18" Alloy cost(-23000) from 20" Alloy(31000) and remove 18" Alloy from the table. I Used following Dax function and it returns above table as out without doing any subtraction. Please correct my code or help me with new code. Thank you in advance.
Used DAX:
IF (
[Item] = "20"" Alloy",
[Costs] +
CALCULATE (
SUM([Costs]),
[Item] = "18" Alloy"
),
FJ11_16[Calculated Costs]
)
Desired Output:
Items | Cost |
20" Alloy | 8000 |
Air Bag | 5000 |
Deatc | 250 |
Solved! Go to Solution.
Hi @Singh_Yoshi
Please try this:
Measure1 =
VAR _alloy =
CALCULATE (
SUM ( SampleData[Cost] ),
FILTER (
ALL ( SampleData[Item], SampleData[Cost] ),
SampleData[Item] IN { "18"" Alloy", "20"" Alloy" }
)
)
RETURN
SWITCH (
TRUE (),
SELECTEDVALUE ( SampleData[Item] ) = "18"" Alloy", BLANK (),
SELECTEDVALUE ( SampleData[Item] ) = "20"" Alloy", _alloy,
SUM ( SampleData[Cost] )
)
Proud to be a Super User!
Hi @Singh_Yoshi
Please try this:
Measure1 =
VAR _alloy =
CALCULATE (
SUM ( SampleData[Cost] ),
FILTER (
ALL ( SampleData[Item], SampleData[Cost] ),
SampleData[Item] IN { "18"" Alloy", "20"" Alloy" }
)
)
RETURN
SWITCH (
TRUE (),
SELECTEDVALUE ( SampleData[Item] ) = "18"" Alloy", BLANK (),
SELECTEDVALUE ( SampleData[Item] ) = "20"" Alloy", _alloy,
SUM ( SampleData[Cost] )
)
Proud to be a Super User!
I have a following table called Table1,
Model Code | MSRP | LC |
FJ11 | 1392000 | |
FJ16 | 1580000 | 188000 |
FJ7 | 1762000 | 182000 |
FJ8 | 1912000 | 150000 |
FJ15 | 1937000 | 25000 |
FJ12 | 2279000 | 342000 |
I have few measures as below names and consists of Items and Cost
1. Now I want to subtract LC cost - SUM of each measure
2. I need the percentage of (LC Cost - Sum of each measure)
Kindly help me with DAX code
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
104 | |
69 | |
49 | |
41 | |
34 |
User | Count |
---|---|
164 | |
111 | |
62 | |
53 | |
38 |