Private Sub Insert()
Dim row, count, column As Integer
Dim formula As String
' not sure which column you want, a=1, b=2 and so on.
column = 1 ' you specify
count = 1 ' or whichever row you want to start in
row = ActiveSheet.UsedRange.Rows.count
row = row * 2
formula = "=IF(A2>5,Yes,No)"
Do Until count = row
count = count + 1
Cells(count, column).EntireRow.Insert
If count = row Then
Exit Sub
End If
Cells(count, column).Select
Cells(count, column).formula = formula
count = count + 1
Loop
end sub
?
Bit of trouble with the loop... Should get you going in the right direction.
Bookmarks