Excel Hyperlinks in ASP
I'm trying to create an excel from asp, and I do it using OWC but I dont find any documentation, about making Hyperlinks, Can You Help me?.
I use the following code to create Excel.
Dim oExcel
Set oExcel = Server.CreateObject("OWC.Spreadsheet")
Set c=oExcel.Constants
oExcel.Cells(1,1).font.bold = True
oExcel.Cells(1,1).font.size = 18
oExcel.Cells(1,1).Value = "Informe Comparación de Publicaciones"
oExcel.ActiveSheet.Export (Server.MapPath("excel\Informe" & NUMERO &".xls"))
|