我正在使用下面的代码来读取 excel 文件:我只想打印第一行数据,因为我需要在工作表中找到行数(非空白)。
Set xlBook = GetObject(FilePath)
xlBook.Application.Visible = True
xlBook.Windows(1).Visible = True
xlBook.Application.WindowState = xlMinimized
Dim irow As Integer
For irow = 2 To 101
MsgBox xlBook.Worksheets(1).Cells(irow, 1).Value
Next