March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I have a matrix visual with conditional coloring and icons. In order to accomplish this I had to convert NULLS into zeros. However, I would like to exclude the columns that have all ZEROS. In Power Query, when I remove the date columns with nulls I also loose the converted values to zero.
Examples are included.
The first image I have all dates with conditional formatting. The columns in red with NO values at all need to not be there.
The second image is the same matrix but I excluded the date column with NULLS which eliminates the columns with ALL Zeros but I also loose the Zeros for the other rows/columns and I need them for conditional formatting using values. I can't replace the NULLS with zeros because they were filtered by removing the NULLS from the date column.
I was thinking I could use the Grand Total of the column to exclude the column but it doesn't work.
Any help is appreciated.
any luck with this at the end? thanks 🙂
You can add a column to work as a flag: if the sum total value on a date is not zero, then flag is 1; if the sum total value on a date is zero, then flag is 0. Then apply this flag column to the matrix as a visual filter which sets value is 1.
Flag = IF(CALCULATE(SUM('Table'[Value]),ALLEXCEPT('Table','Table'[Date]))<>0,1,0)
Kindly let me know if this helps.
Community Support Team _ Jing Zhang
If this post helps, please consider Accept it as the solution to help other members find it.
I suggest remaining all Zeros rather than NULLs in Power Query just as the first image in your original post, then adding the flag column as a filter with value 1. Here is a sample PBIX file for reference. Let me know if you have any questions.
@marjoriefialek , you can try like this
measure =
var _1 = calculate([measure], allexcept(Table[Date])) +0
return
calculate([measure],_1 <>0 )
Hi,
Share the link from where i can download your PBI file. Show the problematic table and please remove the unnecessary tables and visuals from the PBI file.
Hi,
In Power query unpivot the dates column and then use matrix in the desktop.
see how it works out.
Regards
Amine Jerbi
If I answered your question, please mark this thread as accepted
and you can follow me on
My Website, LinkedIn and Facebook
Unpivotting is multiplying the values but still loosing the zeros when I filter NULLS.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
133 | |
90 | |
88 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
70 | |
68 |