主頁 > 知識庫 > VBS遍歷Excel工作表的實現(xiàn)代碼

VBS遍歷Excel工作表的實現(xiàn)代碼

熱門標簽:地圖標注政府哪個部門管 佛山真人電銷機器人廠家 東營快遞外呼系統(tǒng) 神行者美術館地圖標注 齊齊哈爾高德地圖標注店 哪里有便宜的地圖標注公司 除了地圖標注還有這種生意嗎 如何用機器人進行電銷 百度地圖標注點距離代碼

核心代碼

'******************************************
'拖拽文件,獲取文件路徑
'******************************************
If wscript.Arguments.count=0 then 
		msgbox "拖拽文件到本圖標",0,"提示"
End if 
 
 
for a=0 to wscript.Arguments.count-1
 
	strPath=wscript.Arguments(a)	
	
next
'******************************************
'定義Excle對象、工作薄對象、工作表對象
'******************************************
dim oExcel,oWb,oSheet
 
set ws=WScript.createobject("wscript.shell")
Set oExcel=CreateObject("Excel.Application")
'打開指定的工作簿
Set oWb=oExcel.Workbooks.Open(strPath)
'顯示打開的Excel工作簿
oExcel.visible=true
'******************************************
'遍歷工作簿的所有工作表
'******************************************
for j= 1 to oWb.sheets.count
	set oSheet=oWb.Sheets(j)
	'選中并激活工作表
	oSheet.Activate
	oSheet.Range("A1")="成功"
 
next

 Excel遍歷所有工作簿中所有工作表執(zhí)行宏

Sub test()
n = Worksheets.Count
For i = 1 To n
Worksheets(i).Activate
Macro1
Next
End Sub

 Macro1是宏的名稱

 使用VBS遍歷EXCEL

Dim xlApp,xlSheet,xlWorkBookDim iRowCount,iLoop,jLoop,jColumnCount,numAdd
Set xlApp=CreateObject("Excel.Application")
xlApp.Visible=True
Set xlWorkBook=xlApp.Workbooks.Open("C:\data.xls")
Set xlSheet=xlWorkBook.Sheets("Sheet1")
iRowCount=xlSheet.UsedRange.Rows.Count
jColumnCount=xlSheet.UsedRange.Columns.Count
For iLoop=1 To iRowCount
 For jLoop=1 To jColumnCount
 MsgBox(xlSheet.cells(iLoop,jLoop).value)
 Next
Next

xlWorkBook.Save
xlWorkBook.Close
xlApp.Quit

VBScript 編寫 自動Excel文件內容到數(shù)組并提示輸出

解壓到任意目錄,點擊VBS文件執(zhí)行,程序自動讀取文件所在目錄的Excel文件到數(shù)組中,并通過提示框逐個輸出,提示框1s自動關閉。

Dim oExcel,oWb,oSheet 
Set oExcel= CreateObject("Excel.Application") 
Set oWb = oExcel.Workbooks.Open(dir"\DataReport.xls") 
Set oSheet = oWb.Sheets("HistoryData")      

Dim i
Dim a(150)

For i = 5 To 145 '145-5+1 = 141 
a(i-5) = oSheet.Range("B"i).Value
print "data=",a(i-5)
next

Set oSheet = Nothing 

oExcel.Workbooks.Close


oExcel.Quit '關閉excel.exe'


Function Dir()

Set WshShell = CreateObject("Wscript.Shell")

Dir = WshShell.CurrentDirectory
	
End Function

Function print (prompt,title)
Set WshShell = CreateObject("Wscript.Shell")
WshShell.Popup prompt title,1,""
End Function

為了方便學習特將代碼打包提供下載 下載地址

標簽:邢臺 湖州 鶴壁 四平 文山 銅川 西安 巨人網(wǎng)絡通訊聲明:本文標題《VBS遍歷Excel工作表的實現(xiàn)代碼》,本文關鍵詞  VBS,遍歷,Excel,工,作表,的,;如發(fā)現(xiàn)本文內容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。

  • 相關文章
  • 下面列出與本文章《VBS遍歷Excel工作表的實現(xiàn)代碼》相關的同類信息!
  • 本頁收集關于VBS遍歷Excel工作表的實現(xiàn)代碼的相關信息資訊供網(wǎng)民參考!
  • 推薦文章