I'm working in sheet A, and want to copy some cell values from sheet B. I can do it like this:
Range("B1").Select
ActiveCell.FormulaR1C1 = "='B'!RC"
And I want to do the same for C1, D1, etc. Can one achieve this in a simpler way?
I'm working in sheet A, and want to copy some cell values from sheet B. I can do it like this:
Range("B1").Select
ActiveCell.FormulaR1C1 = "='B'!RC"
And I want to do the same for C1, D1, etc. Can one achieve this in a simpler way?