Pull input from a text box to another tab in the workbook.

stanleytheyak

Board Regular
Joined
Oct 10, 2008
Messages
124
I am creating a QA form for my company. I've created a comments box and I would like to be able to pull anything that is entered in that box into a cell on a secondary tab as a training summary that can be printed out and given to an individual without having to print the entire form. Is this possible?
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
Yes, it's possible. If you want to use a button to trigger the copy of the comments box's text use...

Code:
Private Sub CommandButton1_Click()
    Worksheets("Training Summary").Range("A2") = TextBox1.Text
End Sub

If you want to copy of the comments box's text automatically any time it is changed, use....
Code:
Private Sub TextBox1_Change()
    Worksheets("Training Summary").Range("A2") = TextBox1.Text
End Sub
 
Upvote 0

Forum statistics

Threads
1,224,609
Messages
6,179,875
Members
452,949
Latest member
Dupuhini

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top