Hell everyone!
This is my first time posting on this forum, but I have a fairly basic question.
I have received a data dump with multiple values in a single merged cell that I need to extract into individual rows so I can preform a vlookup on this data.
It looks like this expect on a much larger scale:
[TABLE="class: grid, width: 500, align: center"]
<tbody>[TR]
[TD]Value[/TD]
[TD]Status[/TD]
[/TR]
[TR]
[TD]x1
x2
x3
x4
x5
[/TD]
[TD]Good[/TD]
[/TR]
[TR]
[TD]y1[/TD]
[TD]Bad[/TD]
[/TR]
[TR]
[TD]z1
z2[/TD]
[TD]Pending[/TD]
[/TR]
</tbody>[/TABLE]
What I need is to find a way to extract the "Value" column and "Status" column without having to manually go through and copy and past each value. Basically I need to get the table below:
[TABLE="class: grid, width: 500, align: center"]
<tbody>[TR]
[TD]Value[/TD]
[TD]Status[/TD]
[/TR]
[TR]
[TD]x1[/TD]
[TD]Good[/TD]
[/TR]
[TR]
[TD]x2[/TD]
[TD]Good
[/TD]
[/TR]
[TR]
[TD]x3[/TD]
[TD]Good[/TD]
[/TR]
[TR]
[TD]x4[/TD]
[TD]Good[/TD]
[/TR]
[TR]
[TD]x5[/TD]
[TD]Good[/TD]
[/TR]
[TR]
[TD]y1[/TD]
[TD]Bad[/TD]
[/TR]
[TR]
[TD]z1[/TD]
[TD]Pending[/TD]
[/TR]
[TR]
[TD]z2[/TD]
[TD]Pending[/TD]
[/TR]
</tbody>[/TABLE]
I have tried looking around but have not found a solution to my problem. If anyone has any advice that would be greatly appreciated.
Have a great day!
This is my first time posting on this forum, but I have a fairly basic question.
I have received a data dump with multiple values in a single merged cell that I need to extract into individual rows so I can preform a vlookup on this data.
It looks like this expect on a much larger scale:
[TABLE="class: grid, width: 500, align: center"]
<tbody>[TR]
[TD]Value[/TD]
[TD]Status[/TD]
[/TR]
[TR]
[TD]x1
x2
x3
x4
x5
[/TD]
[TD]Good[/TD]
[/TR]
[TR]
[TD]y1[/TD]
[TD]Bad[/TD]
[/TR]
[TR]
[TD]z1
z2[/TD]
[TD]Pending[/TD]
[/TR]
</tbody>[/TABLE]
What I need is to find a way to extract the "Value" column and "Status" column without having to manually go through and copy and past each value. Basically I need to get the table below:
[TABLE="class: grid, width: 500, align: center"]
<tbody>[TR]
[TD]Value[/TD]
[TD]Status[/TD]
[/TR]
[TR]
[TD]x1[/TD]
[TD]Good[/TD]
[/TR]
[TR]
[TD]x2[/TD]
[TD]Good
[/TD]
[/TR]
[TR]
[TD]x3[/TD]
[TD]Good[/TD]
[/TR]
[TR]
[TD]x4[/TD]
[TD]Good[/TD]
[/TR]
[TR]
[TD]x5[/TD]
[TD]Good[/TD]
[/TR]
[TR]
[TD]y1[/TD]
[TD]Bad[/TD]
[/TR]
[TR]
[TD]z1[/TD]
[TD]Pending[/TD]
[/TR]
[TR]
[TD]z2[/TD]
[TD]Pending[/TD]
[/TR]
</tbody>[/TABLE]
I have tried looking around but have not found a solution to my problem. If anyone has any advice that would be greatly appreciated.
Have a great day!