- Katılım
- 15 Mart 2005
- Mesajlar
- 42,882
- Excel Vers. ve Dili
- Microsoft 365 Tr-En 64 Bit
Selamlar,
Bu kodlamanın sonucunda B sütununda çıkan aylar ingilizce oluyor ingilizce olmaması için kodu nasıl değiştirmeliyim?
Kod:
Private Sub Worksheet_Change(ByVal Target As Range)
On Error Resume Next
If Intersect(Target, [C:C]) Is Nothing Then Exit Sub
If Target.Value = "" Then
Target.Offset(0, -1).Value = ""
Target.Offset(0, -2).Value = ""
Exit Sub
End If
If Not IsDate(Target.Value) Then MsgBox "HATALI VERİ GİRİŞİ !!!"
Target.Offset(0, -2).Value = WorksheetFunction.Text(Target.Value, "YYYY")
Target.Offset(0, -1).Value = WorksheetFunction.Text(Target.Value, "MMMM")
End Sub