difficulty in summing up the values of the excel VBA form

sayedqurrat

New Member
Joined
Jun 8, 2015
Messages
4
I have created a marksheet userform through excel. And have created a command button "add record" on the form. In the form I have labels of different subjects with textboxes alongside and also have a label of "total"(to sum up the marks of all the subjects). And now I am finding a difficulty in writing a code for the "total "...
What I want is that, when I enter the code in the "add command button" I want to write the code for the "total label" also in the same command button...so that when I run my program...the entire record including the total is displayed on the excel sheet...I HV learnt a lot of things from your links...please help me out with this...
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Hi,

Most probably, your objective is to add the content of several textboxes ... which are strings ...

Therefore, you do need to convert them back to numbers in order to add them ... =CLng(TextBox1)+CLng(TextBox2)
 
Upvote 0

Forum statistics

Threads
1,214,822
Messages
6,121,767
Members
449,049
Latest member
greyangel23

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