Passing a value to a range
Posted by John L. on January 27, 2001 9:46 AM
I have a worksheet with numeric values in cells B2 to B5
I am attempting to pass the values to range C2 to C5
Can anyone tell me why this command passes the values:
Range("C2:C5") = Range("B2:B5").Value
And this one does not:
Set myRange = Range("C2:C5")
myRange = Range("B2:B5").Value
Any help would be appreciated ... thanks.