Hi ,
I'd like to know how to merge rows based off unique id values. Lets say I have:
[TABLE="width: 500"]
<tbody>[TR]
[TD]ID[/TD]
[TD]Name[/TD]
[/TR]
[TR]
[TD]@345[/TD]
[TD]Jack[/TD]
[/TR]
[TR]
[TD]@532[/TD]
[TD]Mary[/TD]
[/TR]
</tbody>[/TABLE]
and another sheet with
[TABLE="width: 500"]
<tbody>[TR]
[TD]ID[/TD]
[TD]Age[/TD]
[/TR]
[TR]
[TD]@345[/TD]
[TD]32[/TD]
[/TR]
[TR]
[TD]@532[/TD]
[TD]38[/TD]
[/TR]
</tbody>[/TABLE]
...
I'd like to be able to combine sheets based off id to append data
[TABLE="width: 500"]
<tbody>[TR]
[TD]ID[/TD]
[TD]Name[/TD]
[TD]Age[/TD]
[/TR]
[TR]
[TD]@345[/TD]
[TD]Jack[/TD]
[TD]32[/TD]
[/TR]
[TR]
[TD]@352[/TD]
[TD]Mary[/TD]
[TD]38[/TD]
[/TR]
</tbody>[/TABLE]
...my real wold example will be comparing 500 rows or so and appending numerous columns based off the id
Thanks
I'd like to know how to merge rows based off unique id values. Lets say I have:
[TABLE="width: 500"]
<tbody>[TR]
[TD]ID[/TD]
[TD]Name[/TD]
[/TR]
[TR]
[TD]@345[/TD]
[TD]Jack[/TD]
[/TR]
[TR]
[TD]@532[/TD]
[TD]Mary[/TD]
[/TR]
</tbody>[/TABLE]
and another sheet with
[TABLE="width: 500"]
<tbody>[TR]
[TD]ID[/TD]
[TD]Age[/TD]
[/TR]
[TR]
[TD]@345[/TD]
[TD]32[/TD]
[/TR]
[TR]
[TD]@532[/TD]
[TD]38[/TD]
[/TR]
</tbody>[/TABLE]
...
I'd like to be able to combine sheets based off id to append data
[TABLE="width: 500"]
<tbody>[TR]
[TD]ID[/TD]
[TD]Name[/TD]
[TD]Age[/TD]
[/TR]
[TR]
[TD]@345[/TD]
[TD]Jack[/TD]
[TD]32[/TD]
[/TR]
[TR]
[TD]@352[/TD]
[TD]Mary[/TD]
[TD]38[/TD]
[/TR]
</tbody>[/TABLE]
...my real wold example will be comparing 500 rows or so and appending numerous columns based off the id
Thanks