A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
TediVQ,
Maybe you could adapt from this: I put some text strings in A1:A8, some of which included the * character. Running this code inserts a new line below those cells which contain a *
Sub insrt_below()
Dim c As Range
For Each c In Range("A1:A8")
If InStr(1, c, "*", vbTextCompare) > 0 Then
Rows(c.Offset(1, 0).Row & ":" & c.Offset(1, 0).Row).Insert shift:=xlDown
End If
Next c
End Sub
Is that close to what you wanted?
___________
Regards, Tom