Thanks Marvin -- that code worked great!
Ok, last request -- I (mostly) promise!
I'm trying to modify the following code to only perform its operations up until a specific row (so instead of going all the way to the end of the sheet, to stop at say, Row 42)
Dim RowCtr As Long 'Row Counter to go down rows
Dim LastRow As Long, _
FoundPos As Long, _
DelCount As Long
LastRow = Cells(Rows.Count, "A").End(xlUp).Row
For RowCtr = LastRow To 2 Step -1
FoundPos = InStr(Range("C" & RowCtr).Value, "E")
If FoundPos > 0 Then
Cells(RowCtr, "A").Offset(0, 3) = Range("H20").Value
End If
Next RowCtr
I know its probably something in modifying the LastRow command, but I mucked around and kept getting errors. Can someone help?
Again, I am so hugely grateful to those of you who have replied...
Emily
Bookmarks