Forum Discussion
tdinh
1 year agoFrequent Visitor
Filter out rows with empty value from matrix visual
Is there a way to hide all rows with empty value in matrix visual? For example, Accountant Fee, Action Play Systems. All the display columns are measures. I tried forcing all empty value to 0 and cre...
- 1 year ago
The row will only be hidden if all measures return BLANK()
Anonymous
1 year agoNot applicable
Hi, tdinh
I create sample table and had a test:
Maybe you can create a calculated column, then put it in filter pane:
Display = IF(
ISBLANK([Column1]) || ISBLANK([Column2]) || ISBLANK([Column3]),
FALSE,
TRUE
)
Here is my preview:
How to Get Your Question Answered Quickly
Best Regards
Yongkang Hua
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.