Forum Discussion
Conditional Formatting based on other measure value no effect when blank
- Anonymous7 years ago
oldway
COUNT(SuccessionPlanning[Employee Name])Newway
count(SuccessionPlanning[Employee Name]) +0
I know it is weird ..I started researching how to delete with Blank in Dax .. but nothing looks simple@Elena - 7 years ago
Hi Anonymous ,
To update the measure as below should work well.
measure = var a = count(SuccessionPlanning[Employee Name]) return IF(ISBLANK(a),0,a)
Hello,
I don't know how the measure used in the report is defined, but an idea could be to add 0 to your calculation (e.g. 'Measure = SUM(Amount) + 0' ). That way if you don't have values it will still show 0 and you can color code the value 0.
Regards,
ElenaN
- Anonymous7 years agoNot applicable
Just tried that , did nothing ... I am doing a simple count(EmployeeName) But the Employee will l be only in one column ... there are 6 possible choices ... that is why it is tricky ...
On the tool tip it shows the value [BLANK] but it would not take the + 0
- ElenaN7 years agoResolver V
So, you changed your measure from 'count(EmployeeName) ' to 'count(EmployeeName) + 0' and still does not show 0 in your matrix?
Regards,
ElenaN
- Anonymous7 years agoNot applicable
oldway
COUNT(SuccessionPlanning[Employee Name])Newway
count(SuccessionPlanning[Employee Name]) +0
I know it is weird ..I started researching how to delete with Blank in Dax .. but nothing looks simple@Elena