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

chart dimensions

Hi,

i have a chart whose dimension consists of month year and category.
i have month year and category on list box as well.

i need that on the click on any value in month year list box
the chart should have start week as its dimension and should show the

weeks of the selected month.

How do i get that?

i appreciate any help.

Regards,

Urmi

1 Solution

Accepted Solutions
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

     You can include one more dimension i.e Week in your chart and you can specify the Enable condition on that.

    

     So logically you can say when every there is anything selected in MonthYear list box it shold enable the dimension.

     The enable expression will be.

     =if(getselectedcount(MonthYear)>0,1,0)

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!

View solution in original post

2 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

     You can include one more dimension i.e Week in your chart and you can specify the Enable condition on that.

    

     So logically you can say when every there is anything selected in MonthYear list box it shold enable the dimension.

     The enable expression will be.

     =if(getselectedcount(MonthYear)>0,1,0)

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
er_mohit
Master II
Master II

using getcurrentselection() function you get it