Hello,
I have a table whose data looks like this:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Salesman Name[/TD]
[TD]Tables[/TD]
[TD]Ladders[/TD]
[TD]Chairs[/TD]
[/TR]
[TR]
[TD]John
[/TD]
[TD]5[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD][/TD]
[TD]10[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD][/TD]
[TD][/TD]
[TD]9[/TD]
[/TR]
</tbody>[/TABLE]
I would like to flatten it so that the table reads like the below and remove the repetition of the key column.
[TABLE="width: 500"]
<tbody>[TR]
[TD]Salesman Name[/TD]
[TD]Tables[/TD]
[TD]Ladders[/TD]
[TD]Chairs[/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD]5[/TD]
[TD]10[/TD]
[TD]9[/TD]
[/TR]
</tbody>[/TABLE]
Thank you!
I have a table whose data looks like this:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Salesman Name[/TD]
[TD]Tables[/TD]
[TD]Ladders[/TD]
[TD]Chairs[/TD]
[/TR]
[TR]
[TD]John
[/TD]
[TD]5[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD][/TD]
[TD]10[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD][/TD]
[TD][/TD]
[TD]9[/TD]
[/TR]
</tbody>[/TABLE]
I would like to flatten it so that the table reads like the below and remove the repetition of the key column.
[TABLE="width: 500"]
<tbody>[TR]
[TD]Salesman Name[/TD]
[TD]Tables[/TD]
[TD]Ladders[/TD]
[TD]Chairs[/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD]5[/TD]
[TD]10[/TD]
[TD]9[/TD]
[/TR]
</tbody>[/TABLE]
Thank you!