When setting a range, and the active worksheet is not = to the reference I get an
Application Defined Object Defined Error
using this method below:
Set Rng = Worksheets("Worksheet2").Range(Cells(2,2),Cells(2,3))
But why does it work when I use this method:
Set Rng = Range(Worksheets("Worksheet2").Cells(2,2),Worksheets("Worksheet2").Cells(2,3))
Just trying to understand why exactly the last method works, but the first does not.