Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How to Hide/Unhide Charts based on selections in a List box ?
I have a requirement where chart A should be displayed if I have A as a selection in List box. or
chart B should be displayed if I have B as a selection in List box.
What would be the best way to do it.
Set the list box to always 1 value selected.
Then in each chart use the expression on Show Conditional under the layout tab:
GetFieldSelections(Selection)='A'
//This displays the chart if A is selected.
GetFieldSelections(Selection)='B'
//This displays the chart if B is selected.
Set the list box to always 1 value selected.
Then in each chart use the expression on Show Conditional under the layout tab:
GetFieldSelections(Selection)='A'
//This displays the chart if A is selected.
GetFieldSelections(Selection)='B'
//This displays the chart if B is selected.
AJ, I believe this should work.
In chart A, properties, layout, show, conditional, type in yourfieldname='A'
In Chart B, properties, layout, show, conditional, type in yourfieldname='B'
The when you select either A or B the appropriate Chart will display.
Scott
Thank you Marc and Scott.
It worked
You are welcome. Please remember to mark your post with "Correct Answer"