Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Conditional Formatting based on other measure value no effect when blank

 I have a Matrix , I amusing the  condional Formating the Colors of the Values using a Field value  ...  .. which works .. But when there is no value for the Category ...  it defaults to White ... is...
  • Anonymous's avatar
    Anonymous
    7 years ago

    ElenaN 

    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
  • v-frfei-msft's avatar
    v-frfei-msft
    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)