Forum Discussion
music43
Advocate II
3 years agoHide Rows in Table/Matrix
Hi I have a table/matrix with a couple of dimensions and ten measures. Two of the measures will always return a value (M7 & M8). Is there a way to only show the rows where there is a value in...
- Anonymous3 years ago
Hi music43 ,
I suggest you to try to create a measure to filter your visual.
Filter = VAR _Condition = ISBLANK([M1])&&ISBLANK([M2])&&ISBLANK([M3])&&ISBLANK([M4])&&ISBLANK([M5])&&ISBLANK([M6]) RETURN IF(_Condition,0,1)Add this measure into visual level filter and set this measure to show items when value = 1.
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
3 years agoNot applicable
Hi music43 ,
I suggest you to try to create a measure to filter your visual.
Filter =
VAR _Condition = ISBLANK([M1])&&ISBLANK([M2])&&ISBLANK([M3])&&ISBLANK([M4])&&ISBLANK([M5])&&ISBLANK([M6])
RETURN
IF(_Condition,0,1)
Add this measure into visual level filter and set this measure to show items when value = 1.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.