Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

Custom Icon

Hello, I added a measure for icons, is it possible that the icon will not be visible if there no data on that field?     Here's my Dax Measure for icons   Icon D SLA = SWITCH( TRUE(), [...
  • Jayee's avatar
    3 years ago

    Hi Anonymous ,

     

    Try using this measure

     

    BlankCheck = IF(ISBLANK( [SLA %] ), Blank(),  [Icon D SLA] )

     

    If this post helps, then please consider Accept it as the solution, Appreciate your Kudos!!