Reputation: 471
I have a merged table here, merged on the "level" field:
When I try to export this as KML, the markers end up labeled with the value from the "level" field, despite the existence of a column called "Name".
Am I doing something wrong?
Upvotes: 0
Views: 58
Reputation: 117334
The column-name must be exactly name
(not Name
, it's case-sensitive)
Go to Edit>change columns.
Here you may either:
name
Name
-column to the top(when no name
-column exists, the first column will be used as name for the placemark, currently level
is the first column)Upvotes: 2