Userform to spreadsheet

  • Thread starter Thread starter Aashi
  • Start date Start date
A

Aashi

i kno u can do this cause i have done it before, just
cant rememba how.

i have a userform and i want that information to go onto
a spreadsheet using VBE. does ne1 kno how? or is there ne
other way?

thanks
 
Something like this within the userform code

Worksheets("Sheet1").Range("A1").Value = Me.Textbox1.Text

or


Worksheets("Sheet1").Range("A1").Value = Me.Combobox1.Text

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 

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