M
MatthewByrne
Hi, I have an issue with a function I'm working on at the moment. I hav
the following code:
Dim thisRange As Range
thisRange = Range(firstCell, lastCell)
The problem is that I need to reference this range on one workshee
from another. I've tried:
Dim thisRange As Range
Dim dataSheet As String
dataSheet = "Data"
thisRange = Worksheets(dataSheet).Range(firstCell, lastCell)
Thanks,
Matthe
the following code:
Dim thisRange As Range
thisRange = Range(firstCell, lastCell)
The problem is that I need to reference this range on one workshee
from another. I've tried:
Dim thisRange As Range
Dim dataSheet As String
dataSheet = "Data"
thisRange = Worksheets(dataSheet).Range(firstCell, lastCell)
Thanks,
Matthe