Forum Discussion
BBrak
Advocate I
2 years agoConditional formatting (using DAX?) for cells without data in a Matrix visual
hi all, looking for some help on a problem in Power BI, presumably using DAX. Suppose I have the following simplified data: In Power BI, I would like to display the table above in ...
- 2 years ago
BBrak You could create a measure Measure = MIN('Table'[Item]) and then a conditional format run that if it is blank, return a color.
Greg_Deckler
Community Champion
2 years agoBBrak You could create a measure Measure = MIN('Table'[Item]) and then a conditional format run that if it is blank, return a color.
BBrak
Advocate I
2 years agoGreg_Deckler that was way easier than I realised. Only needed a minor tweak to get it to work for my actual use case. Thanks a lot!