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: 
MIKIEMILLER
Contributor III
Contributor III

Calculation Condition GeoMapping

I have an area layer geomap that has a dimension as follows:

=if('$(vMapD)'='St',[Challenge State],
if('$(vMapD)'='County',[Challenge County]&', '&[Challenge State]))

I then want to add a bubble layer underneath that, so when you select a [Challenge County] on the map, it shows each [Challenge Unit](s) in that [Challenge County].

When I put in the expression below in the Calculation Condition field on the bubble layer, the only way it works is if I make a selection from a selection box and not the map itself. 

=GetSelectedCount([Challenge County])>'0'

Is there an expression that I can put in the Calculation Condition Field that will accomplish this while keeping my dimension an if statement?

Labels (1)
1 Solution

Accepted Solutions
MIKIEMILLER
Contributor III
Contributor III
Author

Figured out answer.  Need to different area layers, and a bubble layer. 

View solution in original post

2 Replies
Channa
Specialist III
Specialist III

try to create variable

vChallengeCountry= [Challenge County]

 

=GetSelectedCount(vChallengeCountry)>'0'

Channa
MIKIEMILLER
Contributor III
Contributor III
Author

Figured out answer.  Need to different area layers, and a bubble layer.