Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
is it possible to write something to automatically save info to the next
empty cell on another sheet |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Lots of ways, here's one.
Sub copytonextsheet() Set destsht = Sheets("sheet12") With destsht lr = .Cells(Rows.Count, "a").End(xlUp).Row + 1 ActiveCell.Copy .Cells(lr, "a") End With End Sub -- Don Guillett Microsoft MVP Excel SalesAid Software uk" wrote in message ... is it possible to write something to automatically save info to the next empty cell on another sheet |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Automatic update of spreadsheet & automatic update between workboo | Excel Worksheet Functions | |||
automatic formatting | Excel Worksheet Functions | |||
automatic date | Excel Discussion (Misc queries) | |||
Automatic Value | Excel Discussion (Misc queries) | |||
mostly automatic input | Excel Discussion (Misc queries) |