0
我想在Excel中創建一個宏,但下面的代碼會導致錯誤。我不明白爲什麼通過索引獲取表導致vba宏中的錯誤
Public Sub CreateSimpleModel()
Dim reportSheet As Worksheet
MsgBox ThisWorkbook.Sheets.Count
reportSheet = ThisWorkbook.Sheets(1) <-- Here I get the error
End Sub
消息框出現它顯示有工作表中的工作簿。錯誤object variable or with block not set
任何幫助,將不勝感激。