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

Problem with using alternate state

Good day!

In my model i have several pivot tables with different alternate states. (They're described on attached picture.)

Also i have one list box wtih default state. All of my pivots must be invisible when i choose "For brand managers".

Because of different alternate state show object condition doesn't work.

Please, help to solve this problem (with keeping these alternate states)

Thanks.

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Try a show condition in the pivot tables like

=Match( Only( {$} ListBoxField), 'For sales team') =1

Replace ListBoxField with the appropriate field name.

View solution in original post

3 Replies
swuehl
MVP
MVP

Try a show condition in the pivot tables like

=Match( Only( {$} ListBoxField), 'For sales team') =1

Replace ListBoxField with the appropriate field name.

settu_periasamy
Master III
Master III

Hi,

May be try this...In the Chart Layout -> Conditional Show

=GetSelectedCount(YourListBoxField)>0 andWildMatch(GetFieldSelections(YourListBoxField),'For brand managers')

Anonymous
Not applicable
Author

It's what i need!

Thx.