Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Preparing for a certification exam? Ask exam experts all your questions on May 15th. Register now.
Hello everyone,
I'm currently working on a DAX formula to measure a pass fail result if value from column A is between range of value of column B and Column C.
Currently, this is the DAX formula I'm using but it's not turning out the correct result.
Solved! Go to Solution.
Hi @Anonymous ,
Try this calculation .
IF(
Table2[Column B]>= Table2[Column A] && Table2[Column C]<= Table2[Column A]
,"Pass"
,"Fail"
)
Thanks ,
Pratyasha Samal
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
Proud to be a Super User!
Hi @Anonymous ,
Try this calculation .
IF(
Table2[Column B]>= Table2[Column A] && Table2[Column C]<= Table2[Column A]
,"Pass"
,"Fail"
)
Thanks ,
Pratyasha Samal
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
Proud to be a Super User!
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
76 | |
75 | |
70 | |
47 | |
41 |
User | Count |
---|---|
64 | |
41 | |
32 | |
30 | |
28 |