我使用下面的代码来读取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