Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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.
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.
Thanks a lot! it solved my question.