I just started using Macros/VBA, so I am hoping someone could help me get over this first hurdle. Thanks a lot.
The below formula copies row 33 and inserts it into row 36. Instead of row 36, i would like it to show up on the first empty row. For example, if there is information in rows 1 - 40, i would like row 33 to be inserted into row 41. And then the next time i run the macro, it will be inserted into row 42, and so on.
The below formula copies row 33 and inserts it into row 36. Instead of row 36, i would like it to show up on the first empty row. For example, if there is information in rows 1 - 40, i would like row 33 to be inserted into row 41. And then the next time i run the macro, it will be inserted into row 42, and so on.
Rows("33:33").Select
Selection.Copy
Rows("36:36").Select
Selection.Insert Shift:=xlDown
Selection.Copy
Rows("36:36").Select
Selection.Insert Shift:=xlDown