Forum Discussion
BBrak
2 years agoAdvocate I
Conditional 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
2 years agoCommunity Champion
BBrak You could create a measure Measure = MIN('Table'[Item]) and then a conditional format run that if it is blank, return a color.
BBrak
2 years agoAdvocate I
Greg_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!