I have two sheets, each containing a list of words and a list of numbers, associated with the words.
A minimal example would be somethings like this:
Sheet A:
mapping 5
color 7
tree 5
bench 4
why 2
Sheet B:
mapping 6
color 7
plant 5
bench 1
however 5
My goal is to have a sheet which combines both data sets into something like this:
mapping 5 6
color 7 7
tree 5 NONE
bench 4 1
why 2 NONE
plant NONE 5
however NONE 5
The spaces indicate the column breaks.
How can I achieve that?