I'm trying to create an ActiveX control button to insert a row at the bottom of my Excel spreadsheet. The thing is though, I want it so that regardless of which cell you're on, it will add a line to the bottom of the list. Therefore, the first time the button is clicked, it might Insert at row 15 and the next time row 16 and so on. I've got this code to start with,
Rows("15:15").Select
Selection.Insert Shift:=xlDown
but need it to move down one row each time it's used. Please advise. Thanks!
Rows("15:15").Select
Selection.Insert Shift:=xlDown
but need it to move down one row each time it's used. Please advise. Thanks!