• DİKKAT

    DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
    Altın Üyelik Hakkında Bilgi

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
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
 
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
 
Geri
Üst