Update data automatically among worksheets

G

Guest

I have 10 worksheets in one workbook. On every worksheet, from A1 to M100
are the data I use for calculations. These data are exactly the same on
every worksheet (I placed them on every worksheet so that it is easier to
link and check numbers).

Right now the data on worksheet 2 to 9 are linked to worksheet 1, so when I
want to revise/refresh the data, I make changes on worksheet 1, and the
changes are reflected on other worksheets through the links. I wonder, if
there is a way that allows me to make changes on any worksheet, and then
automatically update the data on other worksheets? Maybe there is a OnChange
event in VBA?

Thanks in advance.
 
A

Ardus Petus

You have a sheet_change event that can be trapped by following Sub in
Workbook code:
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As R

HTH
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top