DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub tarih_yaz()
Dim son As Long, hcr As Range
son = Cells(Rows.Count, "A").End(3).Row
On Error Resume Next
For Each hcr In Range("M2:M" & son).SpecialCells(xlCellTypeBlanks)
If Cells(hcr.Row, "L") <> "" Then
hcr.Value = Date
Else
hcr.Value = 0
hcr.NumberFormat = "General"
End If
Next hcr
End Sub