![]() |
Help-Copy&Paste code
I forgot to add that I already have the code to select all the tex
boxes, but what is missing is the copy-paste code.... Dim shape_names() shape_names = Array() n = 0 For Each ss In ActiveSheet.Shapes If ss.TopLeftCell.Column = 5 And ss.Type = 17 Then ReDim Preserve shape_names(n) shape_names(n) = ss.Name n = 1 + n End If Next I have attached a template so you can see what my sheet looks like an the end result. In columm E there are text boxes that are created when ever new data i entered in columm C. What I would like to do is a program that woul search for Text boxes in columm E, and then copy and paste the dat from columm A,C and D into each respective text box in columm E. Can anybody help? Regards, B Attachment filename: template1.xls Download attachment: http://www.excelforum.com/attachment.php?postid=42456 -- Message posted from http://www.ExcelForum.com |
Help-Copy&Paste code
You have already received help on this but seem to have chosen to ignore it.
Should others waste their time? -- Regards, Tom Ogilvy "Bourbon " wrote in message ... I forgot to add that I already have the code to select all the text boxes, but what is missing is the copy-paste code.... Dim shape_names() shape_names = Array() n = 0 For Each ss In ActiveSheet.Shapes If ss.TopLeftCell.Column = 5 And ss.Type = 17 Then ReDim Preserve shape_names(n) shape_names(n) = ss.Name n = 1 + n End If Next I have attached a template so you can see what my sheet looks like and the end result. In columm E there are text boxes that are created when ever new data in entered in columm C. What I would like to do is a program that would search for Text boxes in columm E, and then copy and paste the data from columm A,C and D into each respective text box in columm E. Can anybody help? Regards, B. Attachment filename: template1.xls Download attachment: http://www.excelforum.com/attachment.php?postid=424568 --- Message posted from http://www.ExcelForum.com/ |
Help-Copy&Paste code
previously posted:
Sub Tester10() Dim shape_names() Dim tbox As TextBox Dim tboxs As TextBoxes n = 0 ReDim shape_names(0 To 0) For Each tbox In ActiveSheet.TextBoxes If tbox.TopLeftCell.Column = 5 Then ReDim Preserve shape_names(0 To n) shape_names(n) = tbox.Name n = n + 1 End If Next Set tboxs = ActiveSheet.TextBoxes(shape_names) tboxs.BringToFront tboxs.Select ActiveCell.FormulaR1C1 = "11/3/2000" For Each tbox In tboxs tbox.Text = "11/3/2000" & Chr(10) & "" Next End Sub -- Regards, Tom Ogilvy "Bourbon " wrote in message ... I forgot to add that I already have the code to select all the text boxes, but what is missing is the copy-paste code.... Dim shape_names() shape_names = Array() n = 0 For Each ss In ActiveSheet.Shapes If ss.TopLeftCell.Column = 5 And ss.Type = 17 Then ReDim Preserve shape_names(n) shape_names(n) = ss.Name n = 1 + n End If Next I have attached a template so you can see what my sheet looks like and the end result. In columm E there are text boxes that are created when ever new data in entered in columm C. What I would like to do is a program that would search for Text boxes in columm E, and then copy and paste the data from columm A,C and D into each respective text box in columm E. Can anybody help? Regards, B. Attachment filename: template1.xls Download attachment: http://www.excelforum.com/attachment.php?postid=424568 --- Message posted from http://www.ExcelForum.com/ |
All times are GMT +1. The time now is 01:49 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com