Try to use correct terms,this is not a userform. It is a sheet acting as a form.
It's not clear what you want. Do you want to add values from the form to existing values? So if the form contains 5 & the data sheet has 10,the datasheet becomes 15
Option Explicit
Private Sub CommandButton1_Click()
With Sheet1
'move value,overwrite existing
Sheet2.Cells(3, 3).Value = .Cells(3, 3).Value
'add value to existing
Sheet2.Cells(3, 3).Value = .Cells(3, 3).Value + Sheet2.Cells(3, 3).Value
'clear form
.Cells(3, 3).ClearContents
End With
End Sub
Bookmarks