Vbscript生成Excel報(bào)表的常用操作總結(jié)
來(lái)源:易賢網(wǎng) 閱讀:1548 次 日期:2014-09-24 15:58:26
溫馨提示:易賢網(wǎng)小編為您整理了“Vbscript生成Excel報(bào)表的常用操作總結(jié)”,方便廣大網(wǎng)友查閱!

使用QTP自動(dòng)化測(cè)試結(jié)束后,經(jīng)常需要將測(cè)試結(jié)果寫(xiě)入Excel中,這里就把一些常用對(duì)Excel操作的方法進(jìn)行歸納、整理,方便使用時(shí)查閱。支持Office Excel 2003版本,不支持2007版本。

Vbscript代碼

?123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 On Error Resume Next Dim FileName, SheetName, Text, ExcelApp, ExcelBook, ExcelSheet FileName = "D:/Book1.xls" SheetName = "新建表" Text = "Hello QTP ! 你好, QuickTestProfessional !"Set ExcelApp = CreateObject("Excel.Application") Set ExcelBook= ExcelApp.Workbooks.Open(FileName) Set ExcelSheet = ExcelBook.Sheets.Add '插入工作表 'Set ExcelSheet = ExcelBook.Sheets.Item(SheetName) '獲得指定工作表 ' *************** 對(duì)數(shù)據(jù)表的操作 *************** For i=1 To ExcelBook.Sheets.Count If ExcelBook.Sheets(i).Name=SheetName Then ExcelApp.DisplayAlerts=False ExcelBook.Sheets(i).Delete '刪除工作表 ExcelApp.DisplayAlerts=True Exit For End If Next ExcelSheet.Name = SheetName '重命名工作表 ' *************** 對(duì)文字的操作 *************** ExcelSheet.Cells(1,2) = Text ExcelSheet.Range("B2","B20").Value = Text ExcelSheet.Cells(1,2).Font.Name = "Verdana" '設(shè)置字體 ExcelSheet.Cells(1,2).Font.Size = 25 '設(shè)置字號(hào) ExcelSheet.Cells(1,2).Font.Color = RGB(0, 0, 255) '設(shè)置字體顏色 ExcelSheet.Cells(2,2).Font.Bold = True '文字加粗 ExcelSheet.Cells(3,2).Font.Italic = True '文字傾斜 ExcelSheet.Cells(4,2).Font.Underline = True '文字加下劃線 ExcelSheet.Cells(5,2).Font.Strikethrough = True '文字加刪除線 ExcelSheet.Cells(6,2).Characters(2, 2).Font.Superscript = True '設(shè)定文字上標(biāo) ExcelSheet.Cells(7,2).Characters(2, 2).Font.Subscript = True '設(shè)定文字下標(biāo) ' *************** 對(duì)單元格的操作 *************** ExcelSheet.Columns("B").ColumnWidth = 40 '設(shè)置列寬 'ExcelSheet.Columns("B").AutoFit '自動(dòng)調(diào)整列寬 ExcelSheet.Range("B11").RowHeight=40 '設(shè)置行高 'ExcelSheet.Rows(11).Rows.AutoFit '自動(dòng)調(diào)整行高 ExcelSheet.Range("B8","D8").Merge '合并單元格,水平方向 ExcelSheet.Range("B18","B19").Merge '合并單元格,垂直方向 ExcelSheet.Range("B8","D8").Borders.Color = RGB(0,255,0) '設(shè)定單元格邊框顏色 ExcelSheet.Range("B12").Interior.Color = RGB(255,0,0) '設(shè)置單元格背景色 ExcelSheet.Cells(9,2).WrapText = True '自動(dòng)換行 ExcelSheet.Cells(10,2).HorizontalAlignment = 3 '設(shè)置水平對(duì)齊,1常規(guī),2靠左,3居中,4靠右 ' 5填充,6兩端對(duì)齊,7跨列居中,8分散對(duì)齊 ExcelSheet.Cells(11,2).VerticalAlignment = 1 '設(shè)置垂直對(duì)齊,1靠上,2居中,3靠下 ' 4兩端對(duì)齊,5分散對(duì)齊 ExcelSheet.Range("B14").Borders(1).LineStyle=1 '設(shè)置左邊框樣式 ExcelSheet.Range("B14").Borders(2).LineStyle=2 '設(shè)置右邊框樣式 ExcelSheet.Range("B14").Borders(3).LineStyle=3 '設(shè)置上邊框樣式 ExcelSheet.Range("B14").Borders(4).LineStyle=4 '設(shè)置下邊框樣式 ExcelSheet.Range("B15").ClearContents '清除單元格內(nèi)容 ExcelSheet.Range("B16").Formula="=1+10" '設(shè)置單元格公式 ExcelSheet.Range("B17").AddComment("Hello" & vbLf & "QTP") '插入批注 ExcelSheet.Range("B17").Comment.Visible=True '顯示批注 'ExcelSheet.Range("B17").ClearComments '清除批注,與刪除批注效果相同 'ExcelSheet.Range("B17").Comment.Delete '刪除批注,與清除批注效果相同 'ExcelSheet.SaveAs("D:\Book2.xls") '另存為 ExcelBook.Save ExcelBook.Close ExcelApp.Quit Set ExcelBook = Nothing Set ExcelApp = Nothing SystemUtil.CloseProcessByName "Excel.exe" '如果仍有Excel.exe進(jìn)程,可使用這句關(guān)閉進(jìn)程 If Err.number>0 Then MsgBox Err.Description End If On Error GoTo 0

補(bǔ)充:

?12345 ExcelApp.DisplayAlerts = False ‘關(guān)閉兼容性檢查 ExcelBook = ExcelApp.Workbooks.Add ‘新建Excel ExcelSheet = ExcelBook.ActiveSheet ‘激活第一個(gè)表 ExcelSheet.Columns(“A:E”).AutoFit() ‘設(shè)置A到E列自動(dòng)調(diào)整列寬

更多信息請(qǐng)查看IT技術(shù)專欄

更多信息請(qǐng)查看腳本欄目
易賢網(wǎng)手機(jī)網(wǎng)站地址:Vbscript生成Excel報(bào)表的常用操作總結(jié)
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門(mén)公布的正式信息和咨詢?yōu)闇?zhǔn)!

2025國(guó)考·省考課程試聽(tīng)報(bào)名

  • 報(bào)班類型
  • 姓名
  • 手機(jī)號(hào)
  • 驗(yàn)證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢 | 簡(jiǎn)要咨詢須知 | 加入群交流 | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號(hào):hfpxwx
咨詢QQ:526150442(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專用圖標(biāo)