Copying the Editing in one file to Another opened XLS file

A

Ahmad

hi!

I have been given a task to develop some plugin for excel that will
copy any type of editing in the current excel file to the other opened
excel file.

Is it possible. If so then please guide me how to achieve it.

Thanks in advance.

Ahmad Jalil Qarshi
 
T

Tom Ogilvy

Depends on what you mean by editing -

Workbooks("sourcebooks.xls).Worksheets(1).cells.copy
' then pick your poision:
Workbooks("Otherbook.xls").Worksheets(1).Cells.PasteSpecial xlFormats
Workbooks("Otherbook.xls").Worksheets(1).Cells.PasteSpecial xlValues
Workbooks("Otherbook.xls").Worksheets(1).Cells.PasteSpecial xlFormulas
Workbooks("Otherbook.xls").Worksheets(1).Cells.PasteSpecial xlPasteAll
 

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