Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Solved! Go to Solution.
I think this is what you want. Change the signs to >= and <= if you want to include -12 and 0
Measure =
IF(
'MGA - Complaints (SCANS)'[SRC Difference] > -12
&& 'MGA - Complaints (SCANS)'[SRC Difference] < 0,
1,
BLANK()
)
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingI think this is what you want. Change the signs to >= and <= if you want to include -12 and 0
Measure =
IF(
'MGA - Complaints (SCANS)'[SRC Difference] > -12
&& 'MGA - Complaints (SCANS)'[SRC Difference] < 0,
1,
BLANK()
)
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI Reporting@Anonymous
Give this a try.
SRC sent within 3 day (1/0) = IF('MGA - Complaints (SCANS)'[SRC Difference] >= -12 && 'MGA - Complaints (SCANS)'[SRC Difference] <= 0, 1, blank())
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.