Summing up text boxes in user forms

scoha

Active Member
Joined
Jun 15, 2005
Messages
428
I have found some code ti help me sum up the values of text boxes but it doesnt work - gives a type mismatch error - is anyone able to assist??


I want to sum up the values I type into text boxes called txtBld, txtFix etc etc. The values I enter are percentage values (ie 45% entered as "45"). This ones puzzled for some time and I cant get past the error message

Private Sub Update_txtTot()

Dim Total As Currency
With Me
Total = CCur(.txtBld) + CCur(.txtFix) + CCur(.txtMot) + CCur(.txtPla) + CCur(.txtTrk) + CCur(.txtCom) + CCur(.txtOff) + CCur(.txtOhd)

.txtTot = Format(Total / 100, "0.00%")

End With

End Sub
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
You are using Currency format in error. - Should be using Double precision.

Code:
    Dim Total As Double
    Total = CDbl(TextBox1.Value) + CDbl(TextBox2.Value) + CDbl(TextBox3.Value)
    TextBox4.Value = Format(MyTotal / 100, "0.00%")
 
Upvote 0

Forum statistics

Threads
1,215,061
Messages
6,122,921
Members
449,094
Latest member
teemeren

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top