This little sub will take into account that your search range will gro
as you insert rows. Let me know if it helps.
Sub FindXAndInsert()
Dim rSearch As Range
Dim rTarget As Range
Dim lRow As Long
Dim lRows As Long
' Assuming "SearchColumn" is a Named range
Set rSearch = Range("SearchColumn")
' Get number of Rows
lRows = rSearch.Rows.Count
' Loop through Rows
lRow = 1
Do While lRow <= lRows
' Set a range object
Set rTarget = rSearch.Range("A1").Offset(lRow - 1)
' Test for 'x'
If rTarget.Value = "x" Then
' Insert row above target
rTarget.EntireRow.Insert
' Mark inserted so you can see
rTarget.Offset(-1).Value = "Inserted From: "
rTarget.Address(False, False)
' Account for inserted row and the current target skippin
first
' If you don't skip the first row you just end up pushin
your selection down the sheet
If lRow 1 Then lRow = lRow + 1
' Bump row count up one to account for inserted ro
skipping first
If lRow 1 Then lRows = lRows + 1
End If
' Iterate Next Row
lRow = lRow + 1
Loop
End Su
--
tssop
-----------------------------------------------------------------------
tssopa's Profile:
http://www.excelforum.com/member.php...fo&userid=1660
View this thread:
http://www.excelforum.com/showthread.php?threadid=31465