DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Ctrl+Shift+Noktalı virgül( ; ) tuşlarına basarak seçili hücreye tarih yazdırırsınız. |
Private Sub Worksheet_Change(ByVal Target As Range)
Dim cell As Range
For Each cell In Target
If cell.Value = "bugün" Then
cell.Value = Format(Date, "d.m.yyyy")
End If
Next cell
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
Dim cell As Range
Dim watchCell As Range
Set watchCell = Me.Range("I14")
If Not Application.Intersect(Target, watchCell) Is Nothing Then
For Each cell In Target
If cell.Value > 0 And IsEmpty(cell.Offset(0, 1).Value) Then
cell.Offset(0, 1).Value = Date
End If
Next cell
End If
End Sub