将工作表分配给变量时出现问题

时间:2019-02-28 15:08:56

标签: vba declaration worksheet

为什么我可以运行以下代码:

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)

我缺少的对象声明是什么?

0 个答案:

没有答案