Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I am looking to exclude certain outcomes from a given measure that I have. The measure itself works great, there are just errors within the data load itself which are unavoidable. I am looking to say if the measure produces a result that is greater than 3 or less than 0 it needs to be treated as a blank or no entry. What is the best way to accomplish this?
Solved! Go to Solution.
Hi there,
The usual way I would handle this is to create a measure that returns the original result under the required conditions, otherwise blank.
A concise way of writing this using your example is:
New Measure =
VAR OriginalMeasure =
<DAX for Original Measure>
RETURN
IF (
AND ( OriginalMeasure >= 0, OriginalMeasure <= 3 ),
OriginalMeasure
-- Defaults to blank if no 3rd argument provided
)
Hi there,
The usual way I would handle this is to create a measure that returns the original result under the required conditions, otherwise blank.
A concise way of writing this using your example is:
New Measure =
VAR OriginalMeasure =
<DAX for Original Measure>
RETURN
IF (
AND ( OriginalMeasure >= 0, OriginalMeasure <= 3 ),
OriginalMeasure
-- Defaults to blank if no 3rd argument provided
)
Thank you, this works great
User | Count |
---|---|
14 | |
10 | |
7 | |
6 | |
5 |
User | Count |
---|---|
30 | |
19 | |
12 | |
7 | |
5 |