Hi, I am trying to display an HTML table in an excel cell. I am using VBscript to write the table to the Excel file - it looks something like this:
However, it does not work - it simply shows the HTML - isn't there a way to have the table generated by Excel?
Thanks,
James
Code:
Set objWorksheet = objWorkbook.Sheets.Add
objExcel.activeworkbook.ActiveSheet.name = "Chart for Project 1"
objWorksheet.Columns.AutoFit
objWorksheet.Cells(2,1) = "<html><head></head><body><table><tr><td>1</td></tr></table></body></html>"
Thanks,
James