Hi,
I have a complicated situation with an unwieldy amount of data.
The situation is I have data from my website in excel, each row is a profile (around 100k profiles), that all biographical data is crammed into one data field (or in this case, a cell, since in Excel) in HTML format.
The HTML format contains 8 generically named tables and a few paragraphs in between.
The previous owner put me between a rock and a hard place because all the individual biographical data fields like name, age, etc were deleted after being merged into a single field for rendering the post and I have no way to undo it. I extracted all my data into excel, it's structured so each row is all data fields of a profile from my website.
the combined profile biographical data per profile has it's own cell, column C.
I am trying to extract each biographical data from this unfortunately combined cell into other cells so I can make the data useful on reimport such as having categories and tags to filter.
I have tried using a formula like this to extract a profile's name
But trying to do it this way becomes more complicated/difficult as I progress into the string to try to extract more.
Is there a way or any excel addon that is able to parse through each excel cell in the column and convert the HTML tables contained within, extracting each HTML table cell value to additional columns in excel?
I have a complicated situation with an unwieldy amount of data.
The situation is I have data from my website in excel, each row is a profile (around 100k profiles), that all biographical data is crammed into one data field (or in this case, a cell, since in Excel) in HTML format.
The HTML format contains 8 generically named tables and a few paragraphs in between.
The previous owner put me between a rock and a hard place because all the individual biographical data fields like name, age, etc were deleted after being merged into a single field for rendering the post and I have no way to undo it. I extracted all my data into excel, it's structured so each row is all data fields of a profile from my website.
the combined profile biographical data per profile has it's own cell, column C.
I am trying to extract each biographical data from this unfortunately combined cell into other cells so I can make the data useful on reimport such as having categories and tags to filter.
I have tried using a formula like this to extract a profile's name
Code:
=MID(C2,36,FIND("</b",C2,36)-36)
Is there a way or any excel addon that is able to parse through each excel cell in the column and convert the HTML tables contained within, extracting each HTML table cell value to additional columns in excel?