Save ReadOnly file

  • 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. Ho
can I close this changed workbook using VBA if I wouldn´t save thi
workbook as copy of original workbook?

Activeworkbook.close savechanges = false - didn´t work

Any idea?

Version: Excel 2000

Please hel
 
Is this a typo in the post or in your code:

Activeworkbook.close savechanges = false
Should look like this (notice the colon)

Activeworkbook.close savechanges:=false

If it was a typo in the post, what kind of error do you get. (I've used this
and it worked ok for me.)
 
Back
Top