Forum Discussion
Hide Matrix column values which has Zero
Hello folks,
I have matrix table here
But When I filter applied, it looks as below.
I don't want to see all the columns which has zero both.
Is there any possible way to hide rows which has Zero values in both coloumns after applied filter?
8 Replies
- AnonymousNot applicable
On the right side you have filter visual. Unselect 0 value on them if you want to get it done quickly strictly for visual.
The row content shows you "all" like its written
- Karthik12Post Patron
Hi, If applied like this, Values gone
- amitchandakSuper User
Karthik12 , because it and, there now value where both of them are non zero, what I got from screenshot
- AnonymousNot applicable
If the two columns you have shown are created with the dax formula, you can convert the conditions that are 0 to blank() in this setting.
IF(x=0,blank(),x)
If you do this operation, the row will not be reflected when both columns are blank in the matrix.
if the second option
You can create a separate column and check these two values together.
zeroCheck=IF(Plan Qty=0 && Production Qty=0,false,true)
then just filter out those zeroCheck is true in your filter.
- Karthik12Post Patron
Anonymous Thanks. It looks woking fine. Filter not enabling to filter
- AnonymousNot applicable
here i created a demo for you,
Best regards,
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly