hello I want to type numbers into a userform which will then write the numbers to the spreadsheet
May 12th 2003 #1 helloI want to type numbers into a userform which will then write the numbers to the spreadsheet
May 12th 2003 #2 I am using that you shall be typing data into textboxes.Use the following code to extract the data from textbox on form to worksheetWorksheets("Sheet1").cells(1,1).value = userform1.textbox1.valueHope this helps.Ram P
May 12th 2003 #3 Another way, depending on your needs, is to set the ControlSource property to the needed cell. You can do this at Design time via the Properties Window on the Control.