I don't need to export a table, just a single footer line of html that is being stored in a database as a varchar. I am using an ExcelWorksheet:
Using package As New ExcelPackage()
Dim ws As ExcelWorksheet = package.Workbook.Worksheets.Add("Proposal")
........
ws.Cells(curRow, curCol).Value = pr.Footer 'Where pr is database object
Again I don't need to export an HTML table, just a single line. The HTML is printing as plain text in the Excel document, I just want it to render.