Hi,
I am trying to take string data from multiple sheets that is listed in the same row each time, and summarise it in a column (or row), while removing any gaps. There may be a quite obvious fix, but I have found no solution.
So I have data that looks like this:
Sheet 1
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[TD]E[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Cow[/TD]
[TD][/TD]
[TD]Chicken[/TD]
[TD][/TD]
[TD]Barn[/TD]
[/TR]
</tbody>[/TABLE]
Sheet 2
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[TD]E[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD][/TD]
[TD]Pig[/TD]
[TD][/TD]
[TD][/TD]
[TD]Sheep[/TD]
[/TR]
</tbody>[/TABLE]
...
etc.
And would like to then on my final sheet (let's say I only have 2 sheets of data and one final 3rd sheet) a summary of everything from the specific shown row, excluding any gaps e.g.:
Sheet 3
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Summary[/TD]
[/TR]
[TR]
[TD]Cow[/TD]
[/TR]
[TR]
[TD]Chicken[/TD]
[/TR]
[TR]
[TD]Barn[/TD]
[/TR]
[TR]
[TD]Pig[/TD]
[/TR]
[TR]
[TD]Sheep[/TD]
[/TR]
</tbody>[/TABLE]
Would this be possible? Any help is appreciated!
I am trying to take string data from multiple sheets that is listed in the same row each time, and summarise it in a column (or row), while removing any gaps. There may be a quite obvious fix, but I have found no solution.
So I have data that looks like this:
Sheet 1
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[TD]E[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Cow[/TD]
[TD][/TD]
[TD]Chicken[/TD]
[TD][/TD]
[TD]Barn[/TD]
[/TR]
</tbody>[/TABLE]
Sheet 2
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[TD]E[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD][/TD]
[TD]Pig[/TD]
[TD][/TD]
[TD][/TD]
[TD]Sheep[/TD]
[/TR]
</tbody>[/TABLE]
...
etc.
And would like to then on my final sheet (let's say I only have 2 sheets of data and one final 3rd sheet) a summary of everything from the specific shown row, excluding any gaps e.g.:
Sheet 3
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Summary[/TD]
[/TR]
[TR]
[TD]Cow[/TD]
[/TR]
[TR]
[TD]Chicken[/TD]
[/TR]
[TR]
[TD]Barn[/TD]
[/TR]
[TR]
[TD]Pig[/TD]
[/TR]
[TR]
[TD]Sheep[/TD]
[/TR]
</tbody>[/TABLE]
Would this be possible? Any help is appreciated!