Ekteki Dosyada 2 konu ile ilgili soru

Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
Katılım
9 Mart 2007
Mesajlar
85
Excel Vers. ve Dili
xp
combobox ile listbox süz ve çarp+toplama işlemini formule etmek
 
Katılım
28 Nisan 2005
Mesajlar
252
Excel Vers. ve Dili
Excel 2010 Türkçe
Merhaba

Textboxlar ile işlem için aşağıdaki kodları kullanabilirsiniz. Yalnız ondalık sayı kullanacaksanız; ondalık ayracı olarak "." kullanmalısınız.

Kod:
Private Sub TextBox1_Change()
If TextBox2 = Empty Or TextBox1 = Empty Then Exit Sub
TextBox3 = Val(TextBox1) * Val(TextBox2)
End Sub
Private Sub TextBox2_Change()
If TextBox2 = Empty Or TextBox1 = Empty Then Exit Sub
TextBox3 = Val(TextBox1) * Val(TextBox2)
End Sub
Private Sub TextBox3_Change()
If TextBox3 = Empty Or TextBox4 = Empty Then Exit Sub
TextBox5 = Val(TextBox3) + Val(TextBox4)
End Sub
Private Sub TextBox4_Change()
If TextBox3 = Empty Or TextBox4 = Empty Then Exit Sub
TextBox5 = Val(TextBox3) + Val(TextBox4)
End Sub
 
Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
Üst