I\'m running a query from SQL Server Management Studio 2005 that has an HTML file stored as a a string, e.g.:
SELECT html FROM table
Thi
i know this is very old question and has been answered now but this should help as well:
SELECT html From table For Xml Auto, Elements, Root('doc')
it should spit out an xml and then you can import that xml into excel
xml