If I load two unique layers, wherein each layer contains unique data, but both layers share the exact same schema, why is it when I copy a feature from layer 1, and paste it into layer 2, the attributes to not transfer exactly as they should?
What happens is when pasting a feature from layer 1 into layer 2, the layer 2 attributes of said feature has the data offset by 2 columns, e.g.-
layer 1 schema
id
clave
name
address
tel
layer 2 schema
id
clave
name
address
tel
A record from layer 1 like this:
clave; 666
name; JOE BLOW
address; 123 ANYSTREET
tel: 867-5309
email; joe@blow.com
Transfers to layer 2 like this:
clave;
name;
address; 666
tel: JOE BLOW
email; 123 ANYSTREET
So, the actual data is being offset by two columns, and the two columns that are passed over, the data from those columns does not show up anywhere. Clearly, this is not the way it should be behaving, perhaps others have had the same problem?
Thanks,
Eric Jarvies