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.
Hello,
I am looking to create a new measure to include in a table. Say I have 30 categories, and I need to exclude 10 of them on a measure, because this # will be used in multiple visuals, I don't want to exclude in the filter pane of each visual.
I've only seen examples where And/Or are used and those only have 2 logical areas.
Trying something like
CALCULATE(
SUM(FACTS_Service_Per_Category[Price]) ,
AND( FACTS_Service_Per_Category[Category] <> "Product 1",
FACTS_Service_Per_Category[Category] <> "Product 2",
FACTS_Service_Per_Category[Category] <> "Product 3",
FACTS_Service_Per_Category[Category] <> "Product 4",
FACTS_Service_Per_Category[Category] <> "Product 5",
)
Solved! Go to Solution.
Is this what you are looking for?
Measure NOT IN =
CALCULATE(
SUM(Facts[Price]),
FILTER(
Facts,
NOT (Facts[Price]) IN {"P1", P2", "P3", "P4", P5"}
)
)
Regards,
Nathan
No problem. Glad to help!
Is this what you are looking for?
Measure NOT IN =
CALCULATE(
SUM(Facts[Price]),
FILTER(
Facts,
NOT (Facts[Price]) IN {"P1", P2", "P3", "P4", P5"}
)
)
Regards,
Nathan
Yes, thanks!
Guess I have it with nested ANDS. Is there a better way to write this?
CALCULATE (
Sum (
FACTS_Service_Per_Category[Price]),
AND ( FACTS_Service_Per_Category[Category] <> "Product 1",
AND ( FACTS_Service_Per_Category[Category] <> "Product 2",
AND ( FACTS_Service_Per_Category[Category] <> "Product 3",
AND ( FACTS_Service_Per_Category[Category] <> "Product 4",
AND ( FACTS_Service_Per_Category[Category] <> "Product 5",
AND ( FACTS_Service_Per_Category[Category] <> "Product 6",
AND ( FACTS_Service_Per_Category[Category] <> "Product 7", FACTS_Service_Per_Category[Category] <> "Product 8"
)))))))
)
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 |
---|---|
18 | |
15 | |
12 | |
11 | |
8 |
User | Count |
---|---|
24 | |
17 | |
11 | |
11 | |
10 |