Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I need to copy information from 8 textboxes into an excel sheet. I need the
information copied across a row and each item from each textbox needs to be copied into a seperate cell. I also need to be able to copy this information into the next empty row. Anyone know how to do this? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Next row in column A
nextrow=cells(rows.count,"A").end(xlup).row+1 Assigning data: Cells(nextrow,"A")=textbox1.value Cells(nextrow,"B")=textbox2.value etc You should qualify with w/sheet name With worksheets("Sheet1") nextrow=.cells(rows.count,"A").end(xlup).row+1 .Cells(nextrow,"A")=textbox1.value etc end with HTH "enyaw" wrote: I need to copy information from 8 textboxes into an excel sheet. I need the information copied across a row and each item from each textbox needs to be copied into a seperate cell. I also need to be able to copy this information into the next empty row. Anyone know how to do this? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
User Form Text Boxes - Copy format of text boxes | Excel Discussion (Misc queries) | |||
How do I preserve text boxes in a chart during copy/paste? | Charts and Charting in Excel | |||
Copy and Paste Check Boxes | Excel Discussion (Misc queries) | |||
copy and paste graphics into comment boxes | Excel Programming | |||
Code-Copy & Paste in Text Boxes | Excel Programming |