I can autofill a formula in cell c2 to the known "desired" ag2 cell but the problem for me comes on the next step of autofill going to the bottom (simulate double click "+" with selected c2:ag2). I'm trying to put this in a macro that does a number of things and each time this is used the sheet can have a different number of rows. How do I make this code with a variable to the end? next time the range might need to go to AG250 or AG196. I am thinking that some how I need to use the .End(x1Down) but I'm not sure how to format/syntax it in the code below. Your help is greatly appreciated. (still learning lots) Shelly
Range("C2:AG2").Select
Selection.AutoFill Destination:=Range("C2:AG115")
Range("C2:AG115").Select
Range("C2:AG2").Select
Selection.AutoFill Destination:=Range("C2:AG115")
Range("C2:AG115").Select