+ Reply to Thread
Results 1 to 12 of 12

Code to answer No to an error message

Hybrid View

  1. #1
    Registered User
    Join Date
    01-23-2009
    Location
    australia
    MS-Off Ver
    Excel 2007
    Posts
    50

    Code to answer No to an error message

    Hi

    I have a macro enable spreadsheet (Book1.xlsm) and one of its functions is to copy data from a second spreasheet (Book2.xlsx) and copy it into the original spreasheet (Book1.xlsm). Everything works fine if Book2 is closed when i run the macro but if it is already open I get the following message:

    "Book2.xlsx is already open. Reopening will cause any changes you made to be discarded. Do you want to reopen Book1.xlsx" [Yes] [No]

    The code in use is large and complicated so I haven't pasted it in this forum. All I need is a single line of code that answers No to the above error message.

    Any help would be appreciated.

    Doug
    Last edited by boohah; 08-12-2010 at 09:07 AM.

  2. #2
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980

    Re: Code to answer No to an error message

    You should check in your code to see if it's already open:
    Dim wbk as workbook
    on error resume next
    set wbk = workbooks("Book2.xlsx")
    on error goto 0
    if wbk is nothing then
       set wbk = workbooks.open("path to workbook here")
    End if
    Everyone who confuses correlation and causation ends up dead.

  3. #3
    Forum Expert
    Join Date
    07-16-2010
    Location
    Northumberland, UK
    MS-Off Ver
    Excel 2007 (home), Excel 2010 (work)
    Posts
    3,054

    Re: Code to answer No to an error message

    Before you open the new workbook add the line:

    Application.DisplayAlerts=False
    And after the open put:

    Application.DisplayAlerts=True

  4. #4
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980

    Re: Code to answer No to an error message

    IIRC, the default answer is Yes, so that won't do what was required.

  5. #5
    Forum Expert
    Join Date
    07-16-2010
    Location
    Northumberland, UK
    MS-Off Ver
    Excel 2007 (home), Excel 2010 (work)
    Posts
    3,054

    Re: Code to answer No to an error message

    Does turning off displayalerts just give the default answer?

    Actually I've just tested it and it works fine. I think it assumes that you want to just go ahead and do whatever damn fooled thing you were trying to do.

  6. #6
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980

    Re: Code to answer No to an error message

    Quote Originally Posted by Andrew-R View Post
    Does turning off displayalerts just give the default answer?
    Yes.
    Actually I've just tested it and it works fine. I think it assumes that you want to just go ahead and do whatever damn fooled thing you were trying to do.
    but if you had unsaved changes, you would lose them.

  7. #7
    Forum Expert
    Join Date
    07-16-2010
    Location
    Northumberland, UK
    MS-Off Ver
    Excel 2007 (home), Excel 2010 (work)
    Posts
    3,054

    Re: Code to answer No to an error message

    Good point - that's what I get for not reading the OP's request properly.

  8. #8
    Registered User
    Join Date
    01-23-2009
    Location
    australia
    MS-Off Ver
    Excel 2007
    Posts
    50

    Re: Code to answer No to an error message

    Thanks andrew and romperstomper.

    I have used romperstomper's method and I am getting results. If I hide the alert it does work too but it just reopens the file over the top without any chance of saving. Thankyou both for your super fast help, you guys are champions.

    Doug

  9. #9
    Forum Expert
    Join Date
    07-16-2010
    Location
    Northumberland, UK
    MS-Off Ver
    Excel 2007 (home), Excel 2010 (work)
    Posts
    3,054

    Re: Code to answer No to an error message

    Credit goes to romperstomper for answering the question you actually asked, rather than making one up and answering that instead

  10. #10
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980

    Re: Code to answer No to an error message

    Can be more fun that way, though.

  11. #11
    Registered User
    Join Date
    01-23-2009
    Location
    australia
    MS-Off Ver
    Excel 2007
    Posts
    50

    Re: Code to answer No to an error message

    I added to both of your reputations because you are both doing your best to make other peoples lives easier and it is appreciated. Also the code to hide error messages is always handy and I will keep it in my bag of tricks.

    Thanks again.

  12. #12
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980

    Re: Code to answer No to an error message

    Thank you kindly.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1