Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Neymar_Jr
Creator II
Creator II

Issue with creating a map visualization.

I want to create a map visualization which uses the dimension as Region and measure as Sales. Now, i want the map to show only the sites which has negative ebitda. How do i do that?

Thank you!

10 Replies
lironbaram
Partner - Master III
Partner - Master III

hi

try something like

Dimension : Region

Expression : if(Ebidata<0 , Sale) , this should only show you the relevant regions

arulsettu
Master III
Master III

can you share sample app

agigliotti
MVP
MVP

maybe this:

Dim = Region

Measure = Sum( if( ebitda < 0, Sales, 0 ) )


and finally disable show 0 values option.

The Power of shining a light on the dark side of your data.
Follow me on my LinkedIn | Know Gamma Informatica at gammainformatica.it
Neymar_Jr
Creator II
Creator II
Author

map.PNGHi Liron, i used your expression.This is what it shows now.I only want the bubbles not the crosses. Can you help me with that?

Thank you!

shraddha_g
Partner - Master III
Partner - Master III

Are you using any extension?

Neymar_Jr
Creator II
Creator II
Author

Yes, i am using variable extension and that is used to change the value of sales and ebitda.

shraddha_g
Partner - Master III
Partner - Master III

No I am asking about Map

Neymar_Jr
Creator II
Creator II
Author

No, for map i am using the default map.

Neymar_Jr
Creator II
Creator II
Author

Done!

I used the following expression as measure:

if(ebitda<0,Sum(Sales),0)

and then i unchecked Include zero values.