Forum Discussion
Anonymous
6 years agoNot applicable
Show blank/Hide data for second level in Matrix Table
Hi All,
Is there a way to show blank for second level of data in Matrix Table?
Example, show blank for the entire row for C, D, A, B (sub-country)?
I do not want the user to see sub-country values but I still want to display my country level data (country).
Regards,
BK
Hi,
Please try to create these two measures to replace the original values:
New Actual % = IF(ISINSCOPE('Table'[Location]),BLANK(),SUM('Table'[Actual %]))New % Growth = IF(ISINSCOPE('Table'[Location]),BLANK(),SUM('Table'[% Growth]))The result shows:
Hope this can help.
Best Regards,
Giotto Zhi
2 Replies
- amitchandakSuper User
Do not add that to matrix.
Or use isfiltered or isinscope to check the value and make the measure value as null
https://powerpivotpro.com/2013/03/hasonevalue-vs-isfiltered-vs-hasonefilter/
- v-gizhi-msftCommunity Support
Hi,
Please try to create these two measures to replace the original values:
New Actual % = IF(ISINSCOPE('Table'[Location]),BLANK(),SUM('Table'[Actual %]))New % Growth = IF(ISINSCOPE('Table'[Location]),BLANK(),SUM('Table'[% Growth]))The result shows:
Hope this can help.
Best Regards,
Giotto Zhi