Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
migueldfr_23
Contributor III
Contributor III

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
Contributor III
Contributor III
Author

Thanks a lot! it solved my question.