Copy textbox lines to sheet2

Jaye7

Well-known Member
Joined
Jul 7, 2010
Messages
1,060
I am after a script that would copy all the lines/ rows in a textbox to sheet2 column B.

the textbox data would be in rows/ lines as follows, 1 column only, but there could be up to 5000 lines/ rows.

AAA
BBB
CCC
DDD
EEE
FFF
GGG
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
here is some sample code in your userform (edit/adapt to suit). Note: it is assumed that the rows in the textbox have newline characters -- i.e., you've entered Control + Enter after each value or something of the sort. This is at best odd and at worst a poor choice for storing data - textboxes are not meant to store many rows of data in a structured manner - though you've certainly got me wondering how you end up with one that does. Can you not put this data on a spreadsheet to begin with?

Code:
Private Sub CommandButton1_Click()
Dim a As Variant
    a = Split(Me.TextBox1.Value, vbNewLine)
    Sheet2.Range("B1").Resize(UBound(a) + 1, 1).Value = Application.Transpose(a)
End Sub

<a href="http://northernocean.net/etc/mrexcel/20100814_ufsample.zip">Sample Workbook (zip format)</a>
 
Last edited:
Upvote 0
Reading through Posts, just opened this one. Don't have an answer, (BUT

xenou
How did you attach a file in the fashion that you did with a link. I thought the Board did not have the option to attach a File directly?

You seemed to have found a way to do it.
 
Upvote 0
Xenou,

Thanks for yet another script, however the script that you gave me is bugging out on the following line.

code:
Sheet2.Range("B1").Resize(UBound(a) + 1, 1).Value = Application.Transpose(a)

There is a sheet2 in my workbook and even it I change the sheet name reference to a different sheet is is still bugging out.
 
Upvote 0

Forum statistics

Threads
1,213,527
Messages
6,114,140
Members
448,551
Latest member
Sienna de Souza

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