I am working on a macro and I need to go to the bottom of a range that starts at D3 then over to F. So, I have this
But then I need to select F:I and fill down the formulas in F3:I3.
I know it will be some kind of Range(Selection, Selection.End(xlUp)).Select
Selection.FillDown. I don't know how to put it all together.
Thank you for your time and help.
Code:
Range("D3").Select
Selection.End(xlDown).Offset(0, 2).Select
But then I need to select F:I and fill down the formulas in F3:I3.
I know it will be some kind of Range(Selection, Selection.End(xlUp)).Select
Selection.FillDown. I don't know how to put it all together.
Thank you for your time and help.