Userformda TextBox5=textBox1+textbox2+textbox3+textbox4 (toplam)

Katılım
27 Şubat 2007
Mesajlar
353
Excel Vers. ve Dili
2002 Türkçe
" Userformda TextBox5=textBox1+textbox2+textbox3+textbox4 "


textbox1den textbox 5 e kadar olan değerlerin toplamını textbox6 da nasıl görebilirim?
 

N.Ziya Hiçdurmaz

Özel Üye
Katılım
28 Nisan 2007
Mesajlar
2,218
Excel Vers. ve Dili
Office 2013 TR / 32 Bit
Private Sub CommandButton1_Click()
TextBox6 = Val(TextBox1) + Val(TextBox2) + Val(TextBox3) + Val(TextBox4) + Val(TextBox5)
End Sub
 
Üst