You hit the nail on the head there,
Thank you very much!
How would I go about making it so whenever a cell is edited, the macro would run?
Sorry, I am still kind of new to how excel works, and migrated from Quattro pro.
I really appreciate you taking your time to help me out. 
Alright, I found out how to make it do what I wanted.
Private Sub Worksheet_Change(ByVal target As Range)
Dim lngRC As Long
For lngRC = Range("A" & Rows.Count).End(xlUp).Row To 2 Step -1
If Cells(lngRC, "A").Value <> "" And WorksheetFunction.CountBlank(Range(Cells(lngRC - 1, "B"), Cells(lngRC - 1, "F"))) < 5 Then
Rows(lngRC).Insert
End If
Next lngRC
End Sub
Thanks a bunch.
Bookmarks