J
John Keith
When using the macro recorder to autofil...
Range("F3").Select
Selection.AutoFill Destination:=Range("F3:F75")
F75 was chosen as the end point because the data in Column E stopped at row
75.
Is there a way to code the autofil so that the end point is dynamic with out
having to calculate the ending row?
Something like...
Range("E3").AutoFill Destination:=Range(Range("E3"),
Range("E3").End(xlDown)) <- xlDown takes the autofil to row 65536. How do I
make it stop at 75?
Range("F3").Select
Selection.AutoFill Destination:=Range("F3:F75")
F75 was chosen as the end point because the data in Column E stopped at row
75.
Is there a way to code the autofil so that the end point is dynamic with out
having to calculate the ending row?
Something like...
Range("E3").AutoFill Destination:=Range(Range("E3"),
Range("E3").End(xlDown)) <- xlDown takes the autofil to row 65536. How do I
make it stop at 75?