- Katılım
- 27 Mart 2020
- Mesajlar
- 12
- Excel Vers. ve Dili
- Excel 2013 Türkçe
Selamlar başlıkta açıkladığım üzere iki textbox toplamını 3. textbox a aktarmak istiyorum her hangi bir button olmadan anlık olarak
Private Sub CommandButton1_Click()
If TextBox3 = "" Then
TextBox3.Value = Format(CDbl(TextBox1.Value) * CDbl(TextBox2.Value), "0.00")
End If
End Sub
Private Sub TextBox6_Change()
TextBox6.Value = Format(CDbl(TextBox5.Value) + CDbl(TextBox4.Value), "0.00")
End Sub
Private Sub CommandButton1_Click()
If TextBox3 = "" Then
TextBox3.Value = Format(CDbl(TextBox1.Value) * CDbl(TextBox2.Value), "0.00")
End If
End Sub
Private Sub TextBox6_Change()
TextBox6.Value = Format(CDbl(TextBox5.Value) + CDbl(TextBox4.Value), "0.00")
End Sub