Forum Discussion
How to Hide crosstab values
Hi Team,
I need a situation to hide the few values in a crosstab, I have 3 measure values in the crosstab, Year Turnover rate, Quarter turnover rate, Month turnover rate, and Year, Quarter and Month Categories
In the Year Turnover Rate, It Should show only Year-related information, but in my case, it is showing Quarter and monthly information too. How to hide Quarter and month-related information in the Year Turnoverrate measure
And same applies to Quarter Turnover Rate. Can anyone help me please
For reference:-
Regards,
Kiran
Anonymous , Use isinscope and merge the three
Switch(true(),
isinscope(Date[Month]), [Turn Over Rate %],
isinscope(Date[Quarter]), [Quarter Turn Over Rate %],
[Year Turn Over Rate %]
)
https://www.kasperonbi.com/use-isinscope-to-get-the-right-hierarchy-level-in-dax/
1 Reply
- amitchandak
Super User
Anonymous , Use isinscope and merge the three
Switch(true(),
isinscope(Date[Month]), [Turn Over Rate %],
isinscope(Date[Quarter]), [Quarter Turn Over Rate %],
[Year Turn Over Rate %]
)
https://www.kasperonbi.com/use-isinscope-to-get-the-right-hierarchy-level-in-dax/