Aug 27, 2003 #1 Yogi39 Technical User Joined Jun 20, 2001 Messages 273 Location CA I would like to add the values of 3 textboxes on a user form. I tried this but it does not add the numbers...just combines then ! TextBox13.Value = TextBox5.Value + TextBox9.Value
I would like to add the values of 3 textboxes on a user form. I tried this but it does not add the numbers...just combines then ! TextBox13.Value = TextBox5.Value + TextBox9.Value
Aug 27, 2003 #2 S SkipVought Programmer Joined Dec 4, 2001 Messages 47,492 Location US Hi, I think we had this one yesterday... Code: TextBox13.Value = Val(TextBox5.Value) + Val(TextBox9.Value) Skip, Skip@TheOfficeExperts.com http://www.TheOfficeExperts.com Upvote 0 Downvote
Hi, I think we had this one yesterday... Code: TextBox13.Value = Val(TextBox5.Value) + Val(TextBox9.Value) Skip, Skip@TheOfficeExperts.com http://www.TheOfficeExperts.com
Aug 27, 2003 Thread starter #3 Yogi39 Technical User Joined Jun 20, 2001 Messages 273 Location CA Thanks Skip, Upvote 0 Downvote