For some reason I keep getting a range global runtime error when I try to run the following script. Any help would be greatly appreciated.
Sub crossUpdate()
Dim rng As Range
Set rng = Sheet1.Cells.Range("A2").End(xlDown)
Range(rng).Select
End Sub
Whenever you select a range, you must have already Select ed the proper sheet. Also fix the Select command Try:
EDIT#1
This version will Select the block of cells:
Try changing your code into: