Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreShape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.
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 @mrbuttons07 ,
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 @mrbuttons07 ,
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!
User | Count |
---|---|
95 | |
92 | |
84 | |
83 | |
49 |
User | Count |
---|---|
150 | |
146 | |
112 | |
73 | |
56 |