Thread: Adding Values
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Ardus Petus Ardus Petus is offline
external usenet poster
 
Posts: 718
Default Adding Values

With Sheet2.Range("B4")
.Value = .Value + TextBox7.Value
End With

HTH
--
AP

"Greg" a écrit dans le message de news:
...
How do I code to add a textbox on a userform to a cell on a worksheet.

the cell is

sheet2.range("b4")
textbox7

thanks

Greg