Forum Discussion
DAX calculation
- 4 years ago
Hey Anonymous ,
sure, you can expant the criteria for other cases.
You could separate them with the double pipe "||" or you use the IN operator:
Overall Status = IF ( CALCULATE ( COUNTROWS ( MyTable ), ALLEXCEPT ( MyTable, MyTable[Name] ), MyTable[Status] IN { "Fail", "N/A", BLANK () } ) > 0, "Fail", "Pass" )If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
Best regards
Denis
Blog: WhatTheFact.bi
Follow me: twitter.com/DenSelimovic
Hey Anonymous ,
sure, you can expant the criteria for other cases.
You could separate them with the double pipe "||" or you use the IN operator:
Overall Status =
IF (
CALCULATE (
COUNTROWS ( MyTable ),
ALLEXCEPT ( MyTable, MyTable[Name] ),
MyTable[Status] IN { "Fail", "N/A", BLANK () }
) > 0,
"Fail",
"Pass"
)
If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
Best regards
Denis
Blog: WhatTheFact.bi
Follow me: twitter.com/DenSelimovic
Hi Anonymous
I'd like to make a small modification based on selimovd 's solution. Replace BLANK() with "".
Best Regards,
Community Support Team _ Jing