B Bob Phillips Sep 5, 2003 #1 Mete, As an example to a textbox Textbox1.Text = Worksheets("Sheet1").Range("A1").Value
T Tom Ogilvy Sep 5, 2003 #2 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
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 Sep 5, 2003 #3 How can i Take a Data of cell from worksheet to a userform window?