S s_smith_iet Aug 8, 2008 #1 I need a userform text box to equal B5 on sheet Cycle data in the same spread sheet. Cannot figure this out Please help
I need a userform text box to equal B5 on sheet Cycle data in the same spread sheet. Cannot figure this out Please help
O Office_Novice Aug 8, 2008 #2 Private Sub UserForm_Initialize() Me.TextBox1.Value = Range("B5").Value End Sub
R Rick Rothstein \(MVP - VB\) Aug 8, 2008 #3 You forgot the worksheet (which I think is named "Cycle data")... Private Sub UserForm_Initialize() Me.TextBox1.Value = Worksheets("Cycle data").Range("B5").Value End Sub Rick
You forgot the worksheet (which I think is named "Cycle data")... Private Sub UserForm_Initialize() Me.TextBox1.Value = Worksheets("Cycle data").Range("B5").Value End Sub Rick