Textbox question?

  • Thread starter Thread starter Greg B
  • Start date Start date
G

Greg B

I am using a userform to have data transfered to a sheet. I currently use
the code below to send it to a worksheet but what I would like to have
happen is for it to add the total of the textbox to the total already in the
cell.

How do I do that?

Thanks

Greg
 
Here is the code

R = 3 'or whatever desired row variable
Sheets(2).Cells(R, 5).Value = TextBox4.Text
 
Hi,

You can do it like this:

R = 3 'or whatever desired row variable
dim cellValue as integer
cellValue = Sheets(2).Cells(R, 5).Value
Sheets(2).Cells(R, 5).Value = cellValue + TextBox4.Text
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top