Just create another variable to hold the opened file and assign it when you open it:

Dim OtherFile As Workbook

Set OtherFile = Workbooks.Open(Filename:=JnlReg)

You can then refer to it as required.

Dom