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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
migueldfr_23
Creator
Creator

I´d like to show just one location of them on the map.

Hello folks,

I have a table with many columns but two of them are Region of wine and other is Capital of D.O, so some of them is matching but both are showing up on the map, so for clean map I want to show just one just in case they are matching.

Thanks so much for help

Labels (4)
1 Solution

Accepted Solutions
justISO
Specialist
Specialist

Hi, if you want not to show duplicated values in your Region (or Capital) dimension write if clause:

if(Region<>Capital, Region). This way you will show dot only once.

View solution in original post

2 Replies
justISO
Specialist
Specialist

Hi, if you want not to show duplicated values in your Region (or Capital) dimension write if clause:

if(Region<>Capital, Region). This way you will show dot only once.

migueldfr_23
Creator
Creator
Author

Thanks a lot! it solved my question.