- Katılım
- 14 Nisan 2011
- Mesajlar
- 64
- Excel Vers. ve Dili
- MİCROSOFT 2016
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
textbox7 için yaptım.Diğerlerini siz yapabilirisiniz.yaptım olmadı hata veriyor bu kez
Private Sub TextBox7_Change()
Dim sayi1 As Double, sayi2 As Double, sayi3 As Double
Dim sayi4 As Double, sayi5 As Double
If IsNumeric(TextBox7.Value) Then sayi1 = TextBox7.Value
If IsNumeric(TextBox11) Then sayi2 = TextBox11.Value
If IsNumeric(TextBox15) Then sayi3 = TextBox15.Value
If IsNumeric(TextBox19.Value) Then sayi4 = TextBox19.Value
If IsNumeric(TextBox23.Value) Then sayi5 = TextBox23.Value
TextBox25.Value = sayi1 + sayi2 + sayi3 + sayi4 + sayi5
End Sub