Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
danialier
Creator III
Creator III

Scatter chart - bubble drill-down

Hello,

I have a scatter chart with a bunch of bubbles, one per each country. Is there any way to click on a specific bubble and by doing that to move to another sheet where to show further details behind this bubble/country ?

Thanks !

dani

1 Solution

Accepted Solutions
jonathandienst
Partner - Champion III
Partner - Champion III

Dani

Assuming Country is a field, you could add trigger to the OnSelect and OnChange triggers for the field (see Document Properties | Triggers) with an "Activate Sheet" action. The sheet that activates should then be sensitive to the Country selection.

If you want a different tab for each country, then create sheets with the sheetID containing the country, such as SH_France, SH_Germany etc. Then use the expression ='SH_' & Country to select the sheet.

HTH

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein

View solution in original post

2 Replies
jonathandienst
Partner - Champion III
Partner - Champion III

Dani

Assuming Country is a field, you could add trigger to the OnSelect and OnChange triggers for the field (see Document Properties | Triggers) with an "Activate Sheet" action. The sheet that activates should then be sensitive to the Country selection.

If you want a different tab for each country, then create sheets with the sheetID containing the country, such as SH_France, SH_Germany etc. Then use the expression ='SH_' & Country to select the sheet.

HTH

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
danialier
Creator III
Creator III
Author

great thanks Jonathan