The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I have created the below formula to identify how many times in an 8 week period the user did not meet the 96% threshold. We created the following formula, but instead of returning a "1" to indicate the threshold had not been met, it gives values greater than 1. Could you please help to create correct dax formula.
Threshold= calculate ( 'consistency data' [ rc threshold] IN {1} )
HI @bdkanand ,
First thing I don't understand what your formaula is doing. Is it syntactically correct?
The link you shared soesn't work.
In order to check your threshold, you can create a calculated column using DAX something like shown below:
checkThreshold = IF(Table[threshold] < 0.96, 1, 0)
Replace the highlighted element above with your table threshold column. Also, I have assumed your threshold column contains values in decimal format. If not you can modify the DAX above accordingly.
If this helps and resolves the issue, appreciate a Kudos and mark it as a Solution! 🙂
Thanks,
Pragati