rv02,
I think this should work. I added a final loop to go through and do the final deletion. There may be a more elegant solution but this will do the trick:
Sub custom_delete()
Dim totalrange As Range
Dim check As Range
Dim LastRow As Long
'Find the last used row in a Column: column A in this example
With ActiveSheet
LastRow = .Cells(.Rows.Count, "A").End(xlUp).Row
End With
Set totalrange = Range("A1:A" & LastRow)
For Each check In totalrange
If InStr(check.Value, "R") = 1 Then 'check if it starts with R
'take the value of the first cell above it which normall has the
'Aaa.BBB(1000)-style code
tempstring = check.End(xlUp).Value
check.Value = tempstring
check.End(xlUp).Clear
ElseIf InStr(check.Value, "BU_") Then 'check if the value of the line starts with "BU-"
check.Clear
End If
Next check
'loop through the rows and check for the two conditions (starts with four numbers and has an empty
'cell to its right in column B
For i = 1 To totalrange.Rows.Count
If IsNumeric(Left(Cells(i, 1).Value, 4)) = True And IsEmpty(Cells(i, 1).Offset(, 1)) = True Then
Rows(i).Delete
End If
Next i
End Sub
Bookmarks