The code I have below works great if I am only selecting one cell. I need the sub to work on multiple cells at once. The current code allows me to select multiple cells but only does FillDown on the first selected cell. I have searched for a solution but have yet to find one. All solutions that I have found only work if the columns are always the same. My need is for a dynamic macro that works regardless of the cells I select. Can someone please help.
Kind Regards,
jsauber
Kind Regards,
jsauber
Code:
Sub copy_down()
Application.InputBox("Select Range", "Fill Down", Type:=8).Select
Range(ActiveCell.Address & ":" & Cells(Cells(Rows.Count, "A").End(xlUp).Row, ActiveCell.Column).Address).FillDown
End Sub