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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 20 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 33 | |
| 31 | |
| 19 | |
| 12 | |
| 11 |