Hi,

I have captured data from a table in IE and have it going to range"a1"

Set mytable = IeApp.document.getElementById("maindetail")
Sheets("sheet1").Activate
Sheets("sheet1").Range("a1").Value = IeApp.document.getElementById("maindetail").innerHTML
I'd like to "parse" this data so that the html tags are removed and each item is placed in its own cell (a1, a2, a3 etc.

Thanks