Forum Discussion
Anonymous
3 years agoNot applicable
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(), [...
- 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!!
Jayee
3 years agoResponsive Resident
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!!
- Anonymous3 years agoNot applicable
Thanks a lot it works!