Related:
- Which Excel function shall I use
- Excel marksheet - Guide
- Number to words in excel - Guide
- Excel apk for pc - Download - Spreadsheets
- Find function on mac - Guide
- Kernel for excel - Download - Backup and recovery
Oct 10, 2009 at 07:35 PM
Thanks for your reply.
I only use two woeksheets, sheet1 and sheet 2. I want to update data every day in cell A1 in sheet1, B1, C1 etc is same way but for diffirent data.
because everytime i type new data into A1, B1...., the old data will be eraesd. But I still want to keep those old data for future studing. That's why I use sheet2 to keep those data eraesed in sheet1.
what I want is that I want data can be auomatic transfered from sheet1 to sheet2 when I input new data, sheet 2 will not like sheet 1 eraes data, but keep all data ereased in sheet1.
there is any way I can do it. thanks
James
Oct 12, 2009 at 08:14 AM
I can't think of a function which will do the job so try this VB code:
Sub test()
Worksheets("sheet1").Cells(1, 1).Copy
Worksheets("sheet2").Cells(Rows.Count, "a").End(xlUp).Offset(1, 0).PasteSpecial
Application.CutCopyMode = False
End Sub
This code will copy the contents of cell A1 of sheet1 and paste it at the bottom of the generated list on sheet2.
Is this what you were looking for?
Best regards,
Trowa