This Macro only adds one row at a time. Is it possible to add 100 rows at one time?
Any help would be greatly appreciated.
Sub Insert_Row_Input_Actual()
' Insert Macro
'
Dim r As Integer
r = Range("a65536").End(xlUp).Row
Range("a" & r + 1).Select
Rows(ActiveCell.Row).Select...