Capturar datos TextBox
Buenas tardes, ¿algún experto me pueda ayudar con este código?
Tengo un formulario el cual al introducir datos en el TextBox2 el TextBox 3 y 4 me captura el 40% y 60%, pero el TextBox 8 tiene que capturar los datos de los TextBox 3 y 7 (entradas )- los TextBox 5 y 6(salidas)
Private Sub TextBox2_Change()
If IsNumeric(TextBox2.Value) Then
TextBox3.Value = TextBox2.Value - (TextBox2.Value * 0.4)
TextBox4.Value = TextBox2.Value - (TextBox2.Value * 0.6)
TextBox8.Value = Val(TextBox3.Value) + Val(TextBox7.Value) - Val(TextBox5.Value) - Val(TextBox6.Value)
End If
End Sub
Un saludo
Feliz Navidad
Tengo un formulario el cual al introducir datos en el TextBox2 el TextBox 3 y 4 me captura el 40% y 60%, pero el TextBox 8 tiene que capturar los datos de los TextBox 3 y 7 (entradas )- los TextBox 5 y 6(salidas)
Private Sub TextBox2_Change()
If IsNumeric(TextBox2.Value) Then
TextBox3.Value = TextBox2.Value - (TextBox2.Value * 0.4)
TextBox4.Value = TextBox2.Value - (TextBox2.Value * 0.6)
TextBox8.Value = Val(TextBox3.Value) + Val(TextBox7.Value) - Val(TextBox5.Value) - Val(TextBox6.Value)
End If
End Sub
Un saludo
Feliz Navidad
Respuesta de Cadipas spain
1