Aug 27, 2003 #1 Yogi39 Technical User Jun 20, 2001 273 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 Dec 4, 2001 47,487 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 Jun 20, 2001 273 CA Thanks Skip, Upvote 0 Downvote