Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

show table with corresponding values on selection of a dimension in bar chart with a particular color code

Hi ,

     Is there any possible way to show a table with corresponding values on selection of a dimension in bar chart  with a particular color code? Different color code bars are stacked and are made using expressions.img.jpg

4 Replies
ecolomer
Master II
Master II

Sorry, can you explain more your expectative? Tx

Not applicable
Author

Hi,

do you mean to show it as pivot table like

Dim1         Dim2      Exp

Shooting   Blue       value

                Green    value

                Red       value

Si Upload  Blue      value

                Green    value

                Red       value

rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

You can't detect which bar segment was clicked. But you can show an additional table of details when a single Dimension is possible by using a show condition on the detail table like:

=Count(DISTINCT Dim1)=1

If you want to enhance the condition to only show when the Dim has a "green bar", repeat the expression that created the green segment. For example, if the green segment was "sum(Returns)"

=Count(DISTINCT Dim1)=1 AND Sum(Returns) > 0

I've updated this recipe to demonstrate showing object when a bar is clicked.

Qlikview Cookbook: Conditional Show of Details http://qlikviewcookbook.com/recipes/download-info/conditional-show-of-details/


-Rob

http://masterssummit.com

http://qlikviewcookbook.com

Not applicable
Author

I just want to get a logic by which i can detect which stack of a bar (according to color) is selected(by click). Stacked bar is made using count expression and filtered by date.