The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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.
User | Count |
---|---|
65 | |
61 | |
60 | |
53 | |
27 |
User | Count |
---|---|
181 | |
83 | |
68 | |
49 | |
46 |