T
Todd Huttenstine
Hey guys
Below is an example of the problem...
Original code...
Range("A1").Select
Result: Subscript out of range
FIXED code...
Sheets("Renewals WOW 2004").Range("A1").Select
Now why if this sheet was already selected, why did I have
to add the part of the code to specify exactly what sheet
I was talking about. I have used this method hundreds of
times before and it work just fine.
I was running the code from another workbook on another
drive. Im not sure why this would matter because the
sheet was selected. I dont know if that was the reason or
not, but this fixed it.
Below is an example of the problem...
Original code...
Range("A1").Select
Result: Subscript out of range
FIXED code...
Sheets("Renewals WOW 2004").Range("A1").Select
Now why if this sheet was already selected, why did I have
to add the part of the code to specify exactly what sheet
I was talking about. I have used this method hundreds of
times before and it work just fine.
I was running the code from another workbook on another
drive. Im not sure why this would matter because the
sheet was selected. I dont know if that was the reason or
not, but this fixed it.