OK, try this, all the requirements in one subroutine.
Sub sDoStuff()
Dim LastRow As Long
Dim Cell As Range
Dim rRngToDelete As Range
LastRow = Cells.SpecialCells(xlCellTypeLastCell).Row
' unmerge cells in range
Range("A7:N" & LastRow).Cells.UnMerge
For Each Cell In Range("A7:A" & LastRow)
' build range to delete
If Cell.Value = "" Then
If rRngToDelete Is Nothing Then
Set rRngToDelete = Cell
Else
Set rRngToDelete = Union(rRngToDelete, Cell)
End If
End If
' clear column N if column C is blank
If Cell.Offset(0, 2).Value = "" Then
Cell.Offset(0, 13).Value = ""
End If
Next 'Cell
' delete cells if appropriate
If Not rRngToDelete Is Nothing Then
rRngToDelete.EntireRow.Delete
End If
End Sub
Regards, TMS
Bookmarks