Copy a Textbox to a range on different worksheet

  • Thread starter Thread starter LRay67
  • Start date Start date
L

LRay67

Can someone please assist me in how I would go about copying a textbox value
to a specific range in same workbook but different sheet?

Thanks in advance

LRay
 
This is the syntax...
Sheets("Sheet1").Range("C4").Value = _
Sheets("Sheet2").TextBox1.Value
 
Back
Top