Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
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.
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)