Closing ReadOnly file using VBA

  • Thread starter Thread starter acces
  • Start date Start date
A

acces

I have following problem:

File is open as readonly. Some changes in this workbook are made. How
can I close this changed workbook using VBA if I wouldn´t save this
workbook as copy of original workbook?

Activeworkbook.close savechanges = false - didn´t work

Any idea?

Version: Excel 2000

Please help
 
Activeworkbook.close savechanges:= false

with the corrected syntax should work. It appear to work for most other
people.
 
Back
Top