I need to have a msg box pop up on my macro that asks "How Many Rows Would You Like To Insert?" Right now I only have this much:
Right now it will insert only 1 row after row 5. I need it to ask me how many rows I want to insert after row 5. Any help would be appreciated. Thank you in advance
Code:
Sub InsertBlankRows()
Application.ScreenUpdating = False
numRows = InputBox("How many Rows")
'Inserting a Row at at Row 5
Range("A5").EntireRow.Insert
Application.ScreenUpdating = True
End Sub
Right now it will insert only 1 row after row 5. I need it to ask me how many rows I want to insert after row 5. Any help would be appreciated. Thank you in advance