Thread: automatic
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Don Guillett Don Guillett is offline
external usenet poster
 
Posts: 10,124
Default automatic

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