Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
zhaohaifeng
Contributor III
Contributor III

Qliksense Map based on filter show different location and value

Hi All,

For Qliksense map, we want to based on filter show different location and value, is it possible?

For example,  we have the activity for student and school, the filter we can set fields include student and school,

1. when select stcudent, we want to show the number of student, location was student location;

2. when select school, we want to show the number of school ,location was school location.

can you help share some ideas? Thanks.

Labels (1)
2 Replies
fosuzuki
Partner - Specialist III
Partner - Specialist III

Yes, it is possible.

You can add two layers to the Qlik Sense map object. One layer for the students, and a second layer for the schools.

In each layer, you add a calculation condition, according to the filters, to show one layer and hide the other.

Gui_Approbato
Creator III
Creator III

Depending on what you are thinking, you can also use the getselectedcount function.

Use it in a condition like:

If( getselectedcount(Student)=0 , count(School),count(Student))

(Just an example)