Option Explicit
Sub Saatleri_Degistir()
Dim Veri As Range, Son As Long
Son = Cells(Rows.Count, 1).End(3).Row - 2
For Each Veri In Range("D7:BK" & Son)
If Veri.NumberFormatLocal = "ss:dd" Then Veri.Value = "N"
Next
MsgBox "İşleminiz tamamlanmıştır.", vbInformation
End Sub
Saatler silinecek sanırım.
Deneyiniz.
C++:Option Explicit Sub Saatleri_Degistir() Dim Veri As Range, Son As Long Son = Cells(Rows.Count, 1).End(3).Row - 2 For Each Veri In Range("D7:BK" & Son) If Veri.NumberFormatLocal = "ss:dd" Then Veri.Value = "N" Next MsgBox "İşleminiz tamamlanmıştır.", vbInformation End Sub