السلام عليكم
جرب هذا الكود على اساس ان الوقت في العمود E بهذا الفورمات hh:mm:ss
Sub Delete333Rows()
Dim LR As Long, a As Long
Application.ScreenUpdating = False
LR = Cells(Rows.Count, 5).End(xlUp).Row
For a = LR To 1 Step -1
If Minute(Cells(a, 5)) = "15" Or Minute(Cells(a, 5)) = "30" Or Minute(Cells(a, 5)) = "45" Then
Rows(a).Delete
End If
Next a
Application.ScreenUpdating = True
End Sub