Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi there,
In sheet one, i have simulated a userform to enable users to enter data (at their request). I am trying to find the most efficient method to take the data entered in specific rows of Sheet 1, and insert into the last available row of sheet 2. Any ideas on how i can accomplish this? -- Carlee |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You can find the last row in sheet2 with
with worksheets("Sheet2") set rng = .Cells(rows.count,1).End(xlup) End with this assumes there will be data in the first column. After that it should be copy and insert - something you can easily get with the macro recorder if you don't already know how. -- Regards, Tom Ogilvy "Carlee" wrote: Hi there, In sheet one, i have simulated a userform to enable users to enter data (at their request). I am trying to find the most efficient method to take the data entered in specific rows of Sheet 1, and insert into the last available row of sheet 2. Any ideas on how i can accomplish this? -- Carlee |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
It would be something along the lines of Code:
Sheets("Sheet2").Cells(Rows.Count, 1).End(xlUp).Value = ActiveCell.Value |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sorry, contrary to some boards, the code tags can't be used here it seems.
I'll remember for the future ;-) Wigi "Wigi" wrote: Hi It would be something along the lines of Code:
Sheets("Sheet2").Cells(Rows.Count, 1).End(xlUp).Value = ActiveCell.Value Wigi |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
copy rows from one Data sheet to another sheet based on cell conte | Excel Discussion (Misc queries) | |||
Copy last cell with data in column E on one sheet to cell on anoth | Excel Worksheet Functions | |||
How to search column, copy row, and copy to another sheet in same | Excel Discussion (Misc queries) | |||
how to make one column copy from one sheet to anoth column w/o zer | Excel Discussion (Misc queries) | |||
Copy column from one sheet to another | Excel Discussion (Misc queries) |