Forum Discussion
Hide Blanks Values in Matrix - Hierarchy
- 7 years ago
Hi Anonymous
You may try to create a measure to get the correct total value.For example:
Measure = IF ( HASONEVALUE ( Table3[Column2] ) && MAX ( Table3[Column2] ) <> BLANK (), SUM ( Table3[Value] ), CALCULATE ( SUM ( Table3[Value] ), ALL ( Table3[Column2] ) ) )Regards,
Hi v-cherch-msft
I want to apply the same method that exists in the analysis service, the option "hide blank members":
I just want to remove the blanks:
and if apply the metric, as you can compare, the brand marketing record (for example) disappears, and the values change. (Brand Marketing: -499.39 to -0.89)
I tried to make a replace values for null, but i didn't succeed.
Kind regards.
Hi Anonymous
You may try to create a measure to get the correct total value.For example:
Measure =
IF (
HASONEVALUE ( Table3[Column2] )
&& MAX ( Table3[Column2] ) <> BLANK (),
SUM ( Table3[Value] ),
CALCULATE ( SUM ( Table3[Value] ), ALL ( Table3[Column2] ) )
)
Regards,
- Anonymous7 years agoNot applicable
Hi Guys,
Is possible apply this solution for more hierarchies columns?
For example adding one culumn
Column 1 Column 2 Column 3 Value a a1 a3 1 a a1 2 a a2 a4 3 a a4 4 a b1 2 a b3 2 a b1 3 a b2 b4 4 - Borja2045 years ago
Helper II
Could anyone answer this? I have the same problem, the blank spaces are sometimes in the middle of the hierarchy.. 😕