【轉(zhuǎn)】VBS控制Excel的一些常見(jiàn)方法 [金字塔]
- 咨詢(xún)內(nèi)容:
VBS控制Excel的一些常見(jiàn)方法
首先創(chuàng)建 Excel 對(duì)象,使用ComObj:
oExcel = CreateObject( "Excel.Application" )
1) 顯示當(dāng)前窗口:
oExcel.Visible = True
2) 更改 Excel 標(biāo)題欄:
oExcel.Caption = "應(yīng)用程序調(diào)用 Microsoft Excel"
3) 添加新工作簿:
oExcel.WorkBooks.Add
4) 打開(kāi)已存在的工作簿:
oExcel.WorkBooks.Open( "C:\Excel\Demo.xls" )
5) 設(shè)置第2個(gè)工作表為活動(dòng)工作表:
oExcel.WorkSheets(2).Activate
或
oExcel.WorksSheets( "Sheet2" ).Activate
6) 給單元格賦值:
oExcel.Cells(1,4).Value = "第一行第四列"
7) 設(shè)置指定列的寬度(單位:字符個(gè)數(shù)),以第一列為例:
oExcel.ActiveSheet.Columns(1).ColumnsWidth = 5
8) 設(shè)置指定行的高度(單位:磅)(1磅=0.035厘米),以第二行為例:
oExcel.ActiveSheet.Rows(2).RowHeight = 1/0.035 ' 1厘米
9) 在第8行之前插入分頁(yè)符:
oExcel.WorkSheets(1).Rows(8).PageBreak = 1
10) 在第8列之前刪除分頁(yè)符:
oExcel.ActiveSheet.Columns(4).PageBreak = 0
11) 指定邊框線(xiàn)寬度:
oExcel.ActiveSheet.Range( "B3:D4" ).Borders(2).Weight = 3
1-左 2-右 3-頂 4-底 5-斜( \ ) 6-斜( / )
12) 清除第一行第四列單元格公式:
oExcel.ActiveSheet.Cells(1,4).ClearContents
13) 設(shè)置第一行字體屬性:
oExcel.ActiveSheet.Rows(1).Font.Name = "隸書(shū)"
oExcel.ActiveSheet.Rows(1).Font.Color = clBlue
oExcel.ActiveSheet.Rows(1).Font.Bold = True
oExcel.ActiveSheet.Rows(1).Font.UnderLine = True
14) 進(jìn)行頁(yè)面設(shè)置:
a.頁(yè)眉:
oExcel.ActiveSheet.PageSetup.CenterHeader = "報(bào)表演示"
b.頁(yè)腳:
oExcel.ActiveSheet.PageSetup.CenterFooter = "第&P頁(yè)"
c.頁(yè)眉到頂端邊距2cm:
oExcel.ActiveSheet.PageSetup.HeaderMargin = 2/0.035
d.頁(yè)腳到底端邊距3cm:
oExcel.ActiveSheet.PageSetup.HeaderMargin = 3/0.035
e.頂邊距2cm:
oExcel.ActiveSheet.PageSetup.TopMargin = 2/0.035
f.底邊距2cm:
oExcel.ActiveSheet.PageSetup.BottomMargin = 2/0.035
g.左邊距2cm:
oExcel.ActiveSheet.PageSetup.LeftMargin = 2/0.035
h.右邊距2cm:
oExcel.ActiveSheet.PageSetup.RightMargin = 2/0.035
i.頁(yè)面水平居中:
oExcel.ActiveSheet.PageSetup.CenterHorizontally = 2/0.035
j.頁(yè)面垂直居中:
oExcel.ActiveSheet.PageSetup.CenterVertically = 2/0.035
k.打印單元格網(wǎng)線(xiàn):
oExcel.ActiveSheet.PageSetup.PrintGridLines = True
15) 拷貝操作:
a.拷貝整個(gè)工作表:
oExcel.ActiveSheet.Used.Range.Copy
b.拷貝指定區(qū)域:
oExcel.ActiveSheet.Range( "A1:E2" ).Copy
c.從A1位置開(kāi)始粘貼:
oExcel.ActiveSheet.Range.( "A1" ).PasteSpecial
d.從文件尾部開(kāi)始粘貼:
oExcel.ActiveSheet.Range.PasteSpecial
16) 插入一行或一列:
a. oExcel.ActiveSheet.Rows(2).Insert
b. oExcel.ActiveSheet.Columns(1).Insert
17) 刪除一行或一列:
a. oExcel.ActiveSheet.Rows(2).Delete
b. oExcel.ActiveSheet.Columns(1).Delete
18) 打印預(yù)覽工作表:
oExcel.ActiveSheet.PrintPreview
19) 打印輸出工作表:
oExcel.ActiveSheet.PrintOut
20) 工作表保存:
if not oExcel.ActiveWorkBook.Saved then
oExcel.ActiveSheet.PrintPreview
21) 工作表另存為:
oExcel.SaveAs( "C:\Excel\Demo1.xls" )
22) 放棄存盤(pán):
oExcel.ActiveWorkBook.Saved = True
23) 關(guān)閉工作簿:
oExcel.WorkBooks.Close
24) 退出 Excel:
oExcel.Quit
(二) 使用VBS 控制Excle二維圖
1)選擇當(dāng)?shù)谝粋€(gè)工作薄第一個(gè)工作表
set oSheet=oExcel.Workbooks(1).Worksheets(1)
2)增加一個(gè)二維圖
achart=oSheet.chartobjects.add(100,100,200,200)
3)選擇二維圖的形態(tài)
achart.chart.charttype=4
4)給二維圖賦值
set series=achart.chart.seriescollection
range="sheet1!r2c3:r3c9"
series.add range,true
5)加上二維圖的標(biāo)題
achart.Chart.HasTitle=True
achart.Chart.ChartTitle.Characters.Text=" Excle二維圖"
6)改變二維圖的標(biāo)題字體大小
achart.Chart.ChartTitle.Font.size=18
7)給二維圖加下標(biāo)說(shuō)明
achart.Chart.Axes(xlCategory, xlPrimary).HasTitle = True
achart.Chart.Axes(xlCategory, xlPrimary).AxisTitle.Characters.Text = "下標(biāo)說(shuō)明"
8)給二維圖加左標(biāo)說(shuō)明
achart.Chart.Axes(xlValue, xlPrimary).HasTitle = True
achart.Chart.Axes(xlValue, xlPrimary).AxisTitle.Characters.Text = "左標(biāo)說(shuō)明"
9)給二維圖加右標(biāo)說(shuō)明
achart.Chart.Axes(xlValue, xlSecondary).HasTitle = True
achart.Chart.Axes(xlValue, xlSecondary).AxisTitle.Characters.Text = "右標(biāo)說(shuō)明"
10)改變二維圖的顯示區(qū)大小
achart.Chart.PlotArea.Left = 5
achart.Chart.PlotArea.Width = 223
achart.Chart.PlotArea.Height = 108 - 金字塔客服:
支持一下
- 用戶(hù)回復(fù):
不錯(cuò)
- 網(wǎng)友回復(fù): 太棒了,很好的東東
有思路,想編寫(xiě)各種指標(biāo)公式,程序化交易模型,選股公式,預(yù)警公式的朋友
可聯(lián)系技術(shù)人員 QQ: 1145508240 進(jìn)行 有償 編寫(xiě)!(不貴!點(diǎn)擊查看價(jià)格!)
相關(guān)文章
-
沒(méi)有相關(guān)內(nèi)容