I have the following Macro:
ActiveWindow.SmallScroll Down:=21
Rows("39:39").Select
Selection.Copy
Sheets("Summary").Select
Rows("4:4").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("B18").Select
Columns("B:B").EntireColumn.AutoFit
Range("D13").Select
Sheets("Individual - Non-Approved").Select
Range("A31:K31").Select
How can i amend this so when it pastes into the "summary" sheet it will look for the next available row, and not just row 4. as stated in the macro?
im guessing its a simple fix?
ActiveWindow.SmallScroll Down:=21
Rows("39:39").Select
Selection.Copy
Sheets("Summary").Select
Rows("4:4").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("B18").Select
Columns("B:B").EntireColumn.AutoFit
Range("D13").Select
Sheets("Individual - Non-Approved").Select
Range("A31:K31").Select
How can i amend this so when it pastes into the "summary" sheet it will look for the next available row, and not just row 4. as stated in the macro?
im guessing its a simple fix?