raoulduivestein
Gebruiker
- Lid geworden
- 7 aug 2012
- Berichten
- 115
Ik heb de volgende code in VBA for Excel
Als ik in TextBox7 de waarde 50 invul
Krijg ik als uitkomst 14.5, echter is het de bedoeling dat dit 14,5 is.
Hoe krijg ik dit voor elkaar?
[CPP]
Private Sub TextBox7_Change()
TextBox8.Value = (TextBox7.Value / 100 * 29)
End Sub
[/CPP]
Groet,
Marvin
Als ik in TextBox7 de waarde 50 invul
Krijg ik als uitkomst 14.5, echter is het de bedoeling dat dit 14,5 is.
Hoe krijg ik dit voor elkaar?
[CPP]
Private Sub TextBox7_Change()
TextBox8.Value = (TextBox7.Value / 100 * 29)
End Sub
[/CPP]
Groet,
Marvin