Hücredeki sayıyı + Texboxtaki sayıyı toplama

Katılım
30 Kasım 2006
Mesajlar
411
Excel Vers. ve Dili
Excel 2007 - Türkçe
Altın Üyelik Bitiş Tarihi
05.07.2020
If OptionButton1 = True Then
satir = ComboBox3.ListIndex + 3
Range(Cells(satir, "F")).Value = Range(Cells(satir, "F")) + TextBox1.Value
End If
If OptionButton2 = True Then
satir = ComboBox3.ListIndex + 3
Range(Cells(satir, "G")).Value = Range(Cells(satir, "G")) + TextBox1.Value
End If
 

dEdE

Destek Ekibi
Destek Ekibi
Katılım
1 Temmuz 2005
Mesajlar
2,607
Excel Vers. ve Dili
Ofis 2013 TR 64 Bit
Merhaba,

Bir de böyle deneyiniz.

Kod:
If OptionButton1 = True Then
satir = ComboBox3.ListIndex + 3
Cells(satir, "F").Value = Cells(satir, "F").Value + TextBox1.Text
End If
If OptionButton2 = True Then
satir = ComboBox3.ListIndex + 3
Cells(satir, "G").Value = Cells(satir, "G").Value + TextBox1.Text
End If
 
Üst