Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to hide dimension values in Line Chart?

Hi Folks,

I have 2 dimensions, in that one is Type as "Safety, Critical, High, Medium, Low".

Initial with out any selections i want to show only first three, else five.

I tried the below condition, check..

=IF(getselectedcount(Type)=0,'Type,Criticcal,High',Type)

Sub2u444

1 Solution

Accepted Solutions
sunny_talwar

How about this:

If(Match(Type, 'Critical', 'High', 'Type'), Type)


If(GetSelectedCount(Type) = 0,

If(Match(Type, 'Critical', 'High', 'Type'), Type), Type)

View solution in original post

2 Replies
sunny_talwar

How about this:

If(Match(Type, 'Critical', 'High', 'Type'), Type)


If(GetSelectedCount(Type) = 0,

If(Match(Type, 'Critical', 'High', 'Type'), Type), Type)

Not applicable
Author

thank you Sunny