Taking Data of cell from worksheet to a userform window

  • Thread starter Thread starter Bob Phillips
  • Start date Start date
B

Bob Phillips

Mete,

As an example to a textbox

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

or if you want it formatted as it appears on the screen

Userform1.Textbox1.Text = Worksheets("Sheet1").Range("A1").Text
 
How can i Take a Data of cell from worksheet to a userform window?
 

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