Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Uregent

Hi Qlikies,

i have two dimensions Week and Quarter and one expression sum(Quantity)...now my requirement is:

If i open the chart it shows Quarter Bar chart, but i want to show weeks if anyone clicks on a single Quarter Bar for that particular Quarter.

thanks in advance,

Bharath

1 Solution

Accepted Solutions
Colin-Albert
Partner - Champion
Partner - Champion

Use a drill-down group with Quarters and Weeks.

Look at Edit Groups on the Dimensions tab of your chart

View solution in original post

8 Replies
its_anandrjs
Champion III
Champion III

Use getfieldselection(Quarter) function

Colin-Albert
Partner - Champion
Partner - Champion

Use a drill-down group with Quarters and Weeks.

Look at Edit Groups on the Dimensions tab of your chart

Not applicable
Author

Create the drill down group with hierarchy Quarter --> Week.

So whenever u l select any quarter it will show only weeks related to that quarter.

Hope this will help u..!

vipin_mishra479
Creator II
Creator II

Hi Bharath,

PFA

its_anandrjs
Champion III
Champion III

Or you can use =GetSelectedCount(QuarterField)=1 also

Try with take straight table

Dimension:- Week (And on week dimension click on enable conditional write expression like =GetSelectedCount(YourQuarterFieldHere) = 1

Dimension:- Quarter

Expression:- sum(Quantity)

Not applicable
Author

Drill down group is the easiest solution

Not applicable
Author

you can also use restrication on the dimensions quarter use getselectedcount(quarter) > 1 and for week use getselectedcount(quarter) = 1

I hope this helps.

regards,

MT

Not applicable
Author

Awesome response.

Thank you all..