Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
dathathreya
Creator
Creator

Bar Chart Dimension filter

Hai All,

I have struck up with bar chart dimension filtering,in my bar chart i have added industry dimension.The Industry field is consists of records like.

Agriculture,

banking,

education,

health,

insurance,

logistics,

media,

power,

so on..

Now my requirement is to show only Agriculture,banking,Media and power how to do that.

1 Solution

Accepted Solutions
tresesco
MVP
MVP

Use calculated dimension like:

=If ( match( Industry, 'Agriculture','banking','media'), Industry)

and then check 'Suppress When Value is Null'

Capture.PNG

View solution in original post

2 Replies
tresesco
MVP
MVP

Use calculated dimension like:

=If ( match( Industry, 'Agriculture','banking','media'), Industry)

and then check 'Suppress When Value is Null'

Capture.PNG

dathathreya
Creator
Creator
Author

Thnkq its working.