中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

有哪些Vbscript生成Excel報表的常用操作

發布時間:2021-09-30 11:35:33 來源:億速云 閱讀:108 作者:iii 欄目:開發技術

這篇文章主要介紹“有哪些Vbscript生成Excel報表的常用操作”,在日常操作中,相信很多人在有哪些Vbscript生成Excel報表的常用操作問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”有哪些Vbscript生成Excel報表的常用操作”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

使用QTP自動化測試結束后,經常需要將測試結果寫入Excel中,這里就把一些常用對Excel操作的方法進行歸納、整理,方便使用時查閱。支持Office Excel 2003版本,不支持2007版本。

Vbscript代碼

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) '獲得指定工作表
' *************** 對數據表的操作 ***************
 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 '重命名工作表
' *************** 對文字的操作 ***************
 ExcelSheet.Cells(1,2) = Text
 ExcelSheet.Range("B2","B20").Value = Text
 ExcelSheet.Cells(1,2).Font.Name = "Verdana" '設置字體
 ExcelSheet.Cells(1,2).Font.Size = 25 '設置字號
 ExcelSheet.Cells(1,2).Font.Color = RGB(0, 0, 255) '設置字體顏色
 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 '設定文字上標
 ExcelSheet.Cells(7,2).Characters(2, 2).Font.Subscript = True '設定文字下標
' *************** 對單元格的操作 ***************
 ExcelSheet.Columns("B").ColumnWidth = 40 '設置列寬
 'ExcelSheet.Columns("B").AutoFit '自動調整列寬
 ExcelSheet.Range("B11").RowHeight=40 '設置行高
 'ExcelSheet.Rows(11).Rows.AutoFit '自動調整行高
 ExcelSheet.Range("B8","D8").Merge '合并單元格,水平方向
 ExcelSheet.Range("B18","B19").Merge '合并單元格,垂直方向
 ExcelSheet.Range("B8","D8").Borders.Color = RGB(0,255,0) '設定單元格邊框顏色
 ExcelSheet.Range("B12").Interior.Color = RGB(255,0,0) '設置單元格背景色
 ExcelSheet.Cells(9,2).WrapText = True '自動換行
 ExcelSheet.Cells(10,2).HorizontalAlignment = 3 '設置水平對齊,1常規,2靠左,3居中,4靠右
 ' 5填充,6兩端對齊,7跨列居中,8分散對齊
 ExcelSheet.Cells(11,2).VerticalAlignment = 1 '設置垂直對齊,1靠上,2居中,3靠下
 ' 4兩端對齊,5分散對齊
 ExcelSheet.Range("B14").Borders(1).LineStyle=1 '設置左邊框樣式
 ExcelSheet.Range("B14").Borders(2).LineStyle=2 '設置右邊框樣式
 ExcelSheet.Range("B14").Borders(3).LineStyle=3 '設置上邊框樣式
 ExcelSheet.Range("B14").Borders(4).LineStyle=4 '設置下邊框樣式
 ExcelSheet.Range("B15").ClearContents '清除單元格內容
 ExcelSheet.Range("B16").Formula="=1+10" '設置單元格公式
 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進程,可使用這句關閉進程
 If Err.number>0 Then
 MsgBox Err.Description
 End If
 On Error GoTo 0

補充:

ExcelApp.DisplayAlerts = False ‘關閉兼容性檢查
ExcelBook = ExcelApp.Workbooks.Add ‘新建Excel
ExcelSheet = ExcelBook.ActiveSheet ‘激活第一個表
ExcelSheet.Columns(“A:E”).AutoFit() ‘設置A到E列自動調整列寬
ExcelBook.SaveAs(“D:\Book2.xls”,FileFormat:=Excel.XLFileFormat.xlAddIn) ‘文件另存為

到此,關于“有哪些Vbscript生成Excel報表的常用操作”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

牟定县| 平顶山市| 克山县| 盐山县| 恭城| 武川县| 定边县| 宜川县| 山西省| 青田县| 东丰县| 西贡区| 高陵县| 九江市| 张家川| 长顺县| 巴南区| 逊克县| 阳山县| 阿合奇县| 宁波市| 区。| 托克逊县| 南京市| 平江县| 兰考县| 沐川县| 宾川县| 萨嘎县| 四会市| 遂宁市| 潍坊市| 嘉定区| 河曲县| 昭苏县| 丹棱县| 亳州市| 阿拉尔市| 崇信县| 沐川县| 上栗县|