我使用ASP从SQL服务器导入数据,然后将其导出到excel。
我想要第1行中的标题文本,即单元格a1到n1 但是如何编写可以合并这些字段的命令呢? 然后我就能插入我的标题txt。
我有这个asp代码:
'setup the excel file
Dim objFSO, objExcelFile
Set objFSO = CreateObject("Scripting.FileSystemObject")
excelfilename = "Financials_clients_" & nn & ".xls"
Set objExcelFile = objFSO.CreateTextFile(Server.MapPath(excelfilename))
'Do the header information
objExcelFile.writeline ("<html>")
objExcelFile.writeline ("<table border=1>")
'This header is just shown in one cell ie A1 ... I want it from a1 - n1
objExcelFile.writeline (" <td bgcolor=#cccccc> CLIENT LEVEL - " & product_header & "</td>")
高度赞赏任何其他建议。
答案 0 :(得分:0)
您的代码在一个单元格中输出所有内容,您需要将其更改为在多个表格单元格中输出。
objExcelFile.writeline (" <td bgcolor=#cccccc> CLIENT LEVEL - " & header1 & "</td><td>" & header2 & "</td><td>" & header3 & </td>........")