A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
The text boxes are returning strings so need data type conversion
SUMTOT = clng(Controls("TextBox1").Value) + clng(Controls("TextBox2").Value) etc
I believe you only need to using CLng on one of the TextBoxes as opposed to all of them... I think once one value is a real number, then addition (instead of concatenation) will take place automatically if the other text values are numeric characters.
NOTE: Please mark the message or messages (yes, you can mark more than one) that answer your question as the "Answer" so that others will know your question has been resolved.