L LRay67 Mar 13, 2008 #1 I am trying to copy the value from one textbox on one worksheet to another worksheet. Any suggestions. Thanks Linda
I am trying to copy the value from one textbox on one worksheet to another worksheet. Any suggestions. Thanks Linda
J JLGWhiz Mar 13, 2008 #2 Worksheets(2).Range("A1") = Worksheets(1).TextBox1.Text Or Worksheets(2).Range("A1") = Worksheets(1).TextBox1.Value
Worksheets(2).Range("A1") = Worksheets(1).TextBox1.Text Or Worksheets(2).Range("A1") = Worksheets(1).TextBox1.Value