Tarih atma

Ömer

Moderatör
Yönetici
Katılım
18 Ağustos 2007
Mesajlar
22,184
Excel Vers. ve Dili
Microsoft 365 Tr
Ofis 2016 Tr
Merhaba,

Bu şekilde deneyiniz..

Kod:
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [B2:B65536]) Is Nothing Then Exit Sub
Cells(Target.Row, "C").ClearContents
If UCase(Replace(Replace(Target.Value, "ı", "I"), "i", "İ")) = "TAKILDI" _
Or IsNumeric(Target) = True Then
    Cells(Target.Row, "C").Value = Date
End If
End Sub
.
 
Katılım
8 Mart 2010
Mesajlar
38
Excel Vers. ve Dili
2003 türkçe
rakam yazdığımdada tarih nasıl yazdırırız örneğin 2828 yazdığımda yan hücreye tarih atsın
 
Üst