为什么我可以运行以下代码:
Set wb = ActiveWorkbook
MsgBox (wb.Sheets(1).Range("A" & Rows.count).End(xlUp).row)
在没有获取“对象不支持此属性或方法”的情况下,不是以下代码:
Set wb = ActiveWorkbook
Set ws = wb.Worksheets(1) 'I've tried using both worksheets() and sheets()
MsgBox (wb.ws.Range("A" & Rows.count).End(xlUp).row)
我缺少的对象声明是什么?