Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

EXCEL - save data automatically into sheet 2

Status
Not open for further replies.

696796

Programmer
Aug 3, 2004
218
GB
Hi,

I have this sheet which i am currently working on - what i would like to do is everytime a new bit of data is added to sheet1, it automatically updates sheet2 (which is a datastore). It has to be able to find the next blank cell in the store so data isn't overwritten.

I would prefer not to use a button but am open to suggestions. Are there change events i could put code behind?

Kind Regards,

Alex
 


Hi,

If you use the Worksheet_Change event, you could mirror each change quite easily on the other sheet, something like this...
Code:
  With Target
    OtherSheet.Cells(.row, .column).value = .value
  End With


Skip,

[glasses] [red]A palindrome gone wrong?[/red]
A man, a plan, a ROOT canal...
PULLEMALL![tongue]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top