Taking Data of cell from worksheet to a userform window

B

Bob Phillips

Mete,

As an example to a textbox

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

Tom Ogilvy

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
 
M

Mete Kavruk - EXPARTIZ

How can i Take a Data of cell from worksheet to a userform window?
 
Top