I am trying to get a value from a cell on another worksheet (within the same workbook) and assign it to the variable. I get the following error:
-- removed inline image ---
Here's my code:
Sub x()
Dim x As Double
x = Worksheets("Home").Range(R3C2)
ActiveCell.Offset(0, 3).Value = x
End Sub
Thanks
-- removed inline image ---
Here's my code:
Sub x()
Dim x As Double
x = Worksheets("Home").Range(R3C2)
ActiveCell.Offset(0, 3).Value = x
End Sub
Thanks