Setting value of active workbook in Excel VBA

前端 未结 3 1785
长发绾君心
长发绾君心 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:50

    Try this.

    Dim Workbk as workbook
    Set Workbk = thisworkbook
    

    Now everything you program will apply just for your containing macro workbook.

提交回复
热议问题