Hi ,
I'd like to know how to merge rows based off unique id values. Lets say I have:
<tbody>
ID
Name
@345
Jack
@532
Mary
</tbody>
and another sheet with
<tbody>
ID
Age
@345
32
@532
38
</tbody>
...
I'd like to be able to combine sheets based off id to append data
<tbody>
ID
Name
Age...