Forum Discussion
Detecting all blanks
Morning all,
I have a matrix of data and am trying to conditionally format the background so that "Actuals" have a grey background colour.
Obviously I have some non-existant rows that are producing blanks cells, that are therefore not detected by the conditional formatting I'm using. I have put in an ISBLANK function to change all blanks to "-" and you can see it;s not capturing them all. Is there any way I can capture EVERY blank cell in the matrix using DAX?
2 Replies
- AnonymousNot applicable
Hi EpicTriffid ,
This is a property of matrices, and if you don't have rows and columns of blank values in your original data, it's hard to detect them.
For example, I create a measure that returns 0, but the year 2023 of B in the matirix are blank.
This is because in the original data, there is no B for 2023.
If you want to make your matrix blank values return the color you want, you need to change the original data, which is more troublesome, and this is the advice I can provide.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- EpicTriffidHelper IV
Thanks for the reply Anonymous
Is it possible to fix the issue by using a seperate dimension table in the columns bits of the matrix? So my years would be pulled from that table?