-4

I need a map with the countries where I can see which car is on each country. My data is like this: enter image description here

I would like to see an interactive map where I can see what cars I have on the country.

Thanks!

shrivallabha.redij
  • 5,832
  • 1
  • 12
  • 27

1 Answers1

0

Split your Countries column by ',' delimiter - then Unpivot Other Columns on the Car column. You will end up with a tall table where you can use car (attribute) and country (value) on a map.

You will need a Lookup table to convert the short country values into proper country names i.e. US needs a mapping to 'United States'

Oex
  • 23
  • 4