Forum Discussion

vedhikha's avatar
vedhikha
Regular Visitor
3 years ago

How to write a DAX using ISBLANK()

I created a column that has to return a score of 0.1 for claims=blank and 0 for any claims present   Claim_score = IF(ISBLANK(COUNT(Claims[SCAC]))==TRUE,0.1,0)   The above works if claims are pr...