Textboxtaki tarihe yıl eklemek

Katılım
21 Mart 2005
Mesajlar
200
Excel Vers. ve Dili
Ofiice 2013
Değerli Forum Yöneticileri öncelikle sizi tebrik eder bu yeni yüzün hayırlı olmasını dilerim. soum textbox1 de bulunan tarihin (01.01.2005) commandbuttunla textbox2 ye 1 yıl ekleyerek yani 01.01.2006 yazacak şekilde kod istiyorum. saygılar sunarım
 

zafer

Super Moderator
Yönetici
Katılım
8 Mart 2005
Mesajlar
3,288
Excel Vers. ve Dili
OFFICE 2003 TÜRKÇE
OFFICE 2010 TÜRKÇE
Merhaba

Kod:
Private Sub CommandButton1_Click()
TextBox2 = CDate(TextBox1) + 365
End Sub
 
Katılım
17 Ağustos 2004
Mesajlar
222
Excel Vers. ve Dili
Ofiste Excel 2000 Türkçe
Evde Excel 2003 Türkçe
Merhaba
Private Sub CommandButton1_Click()
TextBox2.Value = Format(Day(TextBox1.Value) & "/" & Month(TextBox1.Value) & "/" & Year(TextBox1.Value) + 1, "dd/mm/yyyy")
End Sub
 

veyselemre

Özel Üye
Katılım
9 Mart 2005
Mesajlar
3,646
Excel Vers. ve Dili
Pro Plus 2021
Kod:
TextBox2 = Format(DateAdd("yyyy", 1, TextBox1), "dd.mm.yyyy")
 
Üst