Hi. Wondering if someone can help me with this problem I am having.
In a form I have few text box where I want to take the value someone insert into these text box and do a calculation.
I have Five text boxes and one command button. When command button clicked the
result should be shown on text box 6 (Output Result)
Here is what I've done so far but it is not working
Private Sub CalculateButton_Click()
OutputResult = (([TextBox1] + [TextBox2] + [TextBox3] + [TextBox4]) * ([Labour] * 40) + 60) * 1.5
End Sub
Please help.
In a form I have few text box where I want to take the value someone insert into these text box and do a calculation.
I have Five text boxes and one command button. When command button clicked the
result should be shown on text box 6 (Output Result)
Here is what I've done so far but it is not working

Private Sub CalculateButton_Click()
OutputResult = (([TextBox1] + [TextBox2] + [TextBox3] + [TextBox4]) * ([Labour] * 40) + 60) * 1.5
End Sub
Please help.