A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
You could run this macro:
Sub InsertRows()
Dim r As Long
Dim m As Long
Application.ScreenUpdating = False
m = Cells.Find(What:="*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
For r = m To 2 Step -1
Range("A" & r).Resize(5).EntireRow.Insert
Next r
Application.ScreenUpdating = True
End Sub