首页 > 编程 > VBScript > 正文

Vbscript生成Excel报表的常用操作总结

2020-06-26 18:40:09
字体:
来源:转载
供稿:网友

这篇文章主要介绍了Vbscript生成Excel报表的常用操作总结,涵盖方方面面的Excel操作命令,不容错过,需要的朋友可以参考下

使用QTP自动化测试结束后,经常需要将测试结果写入Excel中,这里就把一些常用对Excel操作的方法进行归纳、整理,方便使用时查阅。支持Office Excel 2003版本,不支持2007版本。

Vbscript代码

 

 
  1. On Error Resume Next 
  2. Dim FileName, SheetName, Text, ExcelApp, ExcelBook, ExcelSheet 
  3. FileName = "D:/Book1.xls" 
  4. SheetName = "新建表" 
  5. Text = "Hello QTP ! 你好, QuickTestProfessional !" 
  6. Set ExcelApp = CreateObject("Excel.Application"
  7. Set ExcelBook= ExcelApp.Workbooks.Open(FileName) 
  8. Set ExcelSheet = ExcelBook.Sheets.Add '插入工作表 
  9. 'Set ExcelSheet = ExcelBook.Sheets.Item(SheetName) '获得指定工作表 
  10. ' *************** 对数据表的操作 *************** 
  11. For i=1 To ExcelBook.Sheets.Count 
  12. If ExcelBook.Sheets(i).Name=SheetName Then 
  13. ExcelApp.DisplayAlerts=False 
  14. ExcelBook.Sheets(i).Delete '删除工作表 
  15. ExcelApp.DisplayAlerts=True 
  16. Exit For 
  17. End If 
  18. Next 
  19. ExcelSheet.Name = SheetName '重命名工作表 
  20. ' *************** 对文字的操作 *************** 
  21. ExcelSheet.Cells(1,2) = Text 
  22. ExcelSheet.Range("B2","B20").Value = Text 
  23. ExcelSheet.Cells(1,2).Font.Name = "Verdana" '设置字体 
  24. ExcelSheet.Cells(1,2).Font.Size = 25 '设置字号 
  25. ExcelSheet.Cells(1,2).Font.Color = RGB(0, 0, 255) '设置字体颜色 
  26. ExcelSheet.Cells(2,2).Font.Bold = True '文字加粗 
  27. ExcelSheet.Cells(3,2).Font.Italic = True '文字倾斜 
  28. ExcelSheet.Cells(4,2).Font.Underline = True '文字加下划线 
  29. ExcelSheet.Cells(5,2).Font.Strikethrough = True '文字加删除线 
  30. ExcelSheet.Cells(6,2).Characters(2, 2).Font.Superscript = True '设定文字上标 
  31. ExcelSheet.Cells(7,2).Characters(2, 2).Font.Subscript = True '设定文字下标 
  32. ' *************** 对单元格的操作 *************** 
  33. ExcelSheet.Columns("B").ColumnWidth = 40 '设置列宽 
  34. 'ExcelSheet.Columns("B").AutoFit '自动调整列宽 
  35. ExcelSheet.Range("B11").RowHeight=40 '设置行高 
  36. 'ExcelSheet.Rows(11).Rows.AutoFit '自动调整行高 
  37. ExcelSheet.Range("B8","D8").Merge '合并单元格,水平方向 
  38. ExcelSheet.Range("B18","B19").Merge '合并单元格,垂直方向 
  39. ExcelSheet.Range("B8","D8").Borders.Color = RGB(0,255,0) '设定单元格边框颜色 
  40. ExcelSheet.Range("B12").Interior.Color = RGB(255,0,0) '设置单元格背景色 
  41. ExcelSheet.Cells(9,2).WrapText = True '自动换行 
  42. ExcelSheet.Cells(10,2).HorizontalAlignment = 3 '设置水平对齐,1常规,2靠左,3居中,4靠右 
  43. ' 5填充,6两端对齐,7跨列居中,8分散对齐 
  44. ExcelSheet.Cells(11,2).VerticalAlignment = 1 '设置垂直对齐,1靠上,2居中,3靠下 
  45. ' 4两端对齐,5分散对齐 
  46. ExcelSheet.Range("B14").Borders(1).LineStyle=1 '设置左边框样式 
  47. ExcelSheet.Range("B14").Borders(2).LineStyle=2 '设置右边框样式 
  48. ExcelSheet.Range("B14").Borders(3).LineStyle=3 '设置上边框样式 
  49. ExcelSheet.Range("B14").Borders(4).LineStyle=4 '设置下边框样式 
  50. ExcelSheet.Range("B15").ClearContents '清除单元格内容 
  51. ExcelSheet.Range("B16").Formula="=1+10" '设置单元格公式 
  52. ExcelSheet.Range("B17").AddComment("Hello" & vbLf & "QTP") '插入批注 
  53. ExcelSheet.Range("B17").Comment.Visible=True '显示批注 
  54. 'ExcelSheet.Range("B17").ClearComments '清除批注,与删除批注效果相同 
  55. 'ExcelSheet.Range("B17").Comment.Delete '删除批注,与清除批注效果相同 
  56. 'ExcelSheet.SaveAs("D:/Book2.xls") '另存为 
  57. ExcelBook.Save 
  58. ExcelBook.Close 
  59. ExcelApp.Quit 
  60. Set ExcelBook = Nothing 
  61. Set ExcelApp = Nothing 
  62. SystemUtil.CloseProcessByName "Excel.exe" '如果仍有Excel.exe进程,可使用这句关闭进程 
  63. If Err.number>0 Then 
  64. MsgBox Err.Description 
  65. End If 
  66. On Error GoTo 0 

补充:

 

 
  1. ExcelApp.DisplayAlerts = False ‘关闭兼容性检查 
  2. ExcelBook = ExcelApp.Workbooks.Add ‘新建Excel 
  3. ExcelSheet = ExcelBook.ActiveSheet ‘激活第一个表 
  4. ExcelSheet.Columns(“A:E”).AutoFit() ‘设置A到E列自动调整列宽 
  5. ExcelBook.SaveAs(“D:/Book2.xls”,FileFormat:=Excel.XLFileFormat.xlAddIn) ‘文件另存为 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表