Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello all,
I have two similar graphs with different filters in different alternate states.
What i want to do is :
When i check the box "Detail"
- Graph1 hiden, Graph2 appears
When i don't check the box "Detail"
- Graph1 apprears, Graph2 hiden.
The box "Detail" is an object list box with one filed. Since the 2 graphs are not in the same alternate states. i am not sure how to do it.
Any idea for this?
Thanks in advance!
Assume the Detail listbox is in the default state. To count selections for the field "Detail" in the default state:
GetSelectedCount(Year, true(), '$')
So a conditional show expression might be like to
GetSelectedCount(Detail, true(), '$') > 0 // Something selected
GetSelectedCount(Detail, true(), '$') = 0 // Nothing selected.
It doesn't matter what State the chart is in. If you want to test a state other than the Default, substitute the state name in for $.
-Rob
Assume the Detail listbox is in the default state. To count selections for the field "Detail" in the default state:
GetSelectedCount(Year, true(), '$')
So a conditional show expression might be like to
GetSelectedCount(Detail, true(), '$') > 0 // Something selected
GetSelectedCount(Detail, true(), '$') = 0 // Nothing selected.
It doesn't matter what State the chart is in. If you want to test a state other than the Default, substitute the state name in for $.
-Rob
Thanks for your help Rob!