View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
JLGWhiz JLGWhiz is offline
external usenet poster
 
Posts: 3,986
Default Textbox value copy from one worksheet to another worksheet

Worksheets(2).Range("A1") = Worksheets(1).TextBox1.Text

Or

Worksheets(2).Range("A1") = Worksheets(1).TextBox1.Value

"LRay67" wrote:

I am trying to copy the value from one textbox on one worksheet to another
worksheet. Any suggestions. Thanks

Linda