Setting value of active workbook in Excel VBA

前端 未结 3 1808
长发绾君心
长发绾君心 2021-01-02 19:12

I for now have my workbook set up this way, in where the workbook is hard coded into the Set command, I am wondering if there is a way of doing this so I can have it where i

3条回答
  •  春和景丽
    2021-01-02 19:54

    You're probably after Set wbOOR = ThisWorkbook

    Just to clarify

    ThisWorkbook will always refer to the workbook the code resides in

    ActiveWorkbook will refer to the workbook that is active

    Be careful how you use this when dealing with multiple workbooks. It really depends on what you want to achieve as to which is the best option.

提交回复
热议问题