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!View all the Fabric Data Days sessions on demand. View schedule
Hi
I have a slicer with 1 - 1000. I want to use the value from this slicer (Parameter created number range created) in an If statement to check if a column on the table is above a certain value. However, it does not seem to work...
Here is the DAX:
_custom Is Case within SLA? =
Solved! Go to Solution.
Hi @Alpesh ,
Please try this measure:
_custom Is Case within SLA? =
VAR SLA = SELECTEDVALUE('Parameter'[Parameter])
RETURN
IF(ISBLANK('Chat Table Unique'[Accepted Time]), "No Accepted Time", IF([_1st Accepted Bus. Seconds] < SLA, "True", "False"))
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Alpesh ,
Please try this measure:
_custom Is Case within SLA? =
VAR SLA = SELECTEDVALUE('Parameter'[Parameter])
RETURN
IF(ISBLANK('Chat Table Unique'[Accepted Time]), "No Accepted Time", IF([_1st Accepted Bus. Seconds] < SLA, "True", "False"))
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!