Sub Insert_Row_on_Qty()
Dim c As Long
For c = Range("F1").End(xlDown).Row To 1 Step -1
If UCase(Cells(c, 6)) = "QTY" Then Cells(c, 6).Insert Shift:=xlDown, CopyOrigin:=xlFormatFromLeftOrAbove
Next
End Sub
Sub Insert_Row_on_Qty()
Dim c As Long
For c = Range("F1").End(xlDown).Row To 1 Step -1
If UCase(Cells(c, 6)) = "QTY" Then Rows(c + 1).Insert Shift:=xlDown
Next
End Sub