+ Reply to Thread
Results 1 to 3 of 3

Do you wish to clear clipboard memory?

  1. #1
    WendyUK
    Guest

    Do you wish to clear clipboard memory?

    I have a macro that is accessing multiple spreadsheets and extracting data
    and pasteing to a summary spreadsheet.

    This is working fine, except when it closes each sheet, I get the message
    "You have data in your clipboard do you wish to save or clear memory" - how
    can I skip this or switch it off?

    Any help would be gratefully received, its driving me nuts - whats the point
    of having a macro if I have to sit there and press return after each
    update!!!

    Thank you,

    Wendy
    Telford



  2. #2
    Tom Ogilvy
    Guest

    Re: Do you wish to clear clipboard memory?

    after each paste and before closing

    application.CutCopyMode = False

    or around the closing command

    Application.DisplayAlerts = False
    ' closing code
    Application.DisplayAlerts = True

    --
    Regards,
    Tom Ogilvy

    "WendyUK" <WendyUK@discussions.microsoft.com> wrote in message
    news:145ABE68-C0DF-4B36-A649-62141AC2250A@microsoft.com...
    > I have a macro that is accessing multiple spreadsheets and extracting data
    > and pasteing to a summary spreadsheet.
    >
    > This is working fine, except when it closes each sheet, I get the message
    > "You have data in your clipboard do you wish to save or clear memory" -

    how
    > can I skip this or switch it off?
    >
    > Any help would be gratefully received, its driving me nuts - whats the

    point
    > of having a macro if I have to sit there and press return after each
    > update!!!
    >
    > Thank you,
    >
    > Wendy
    > Telford
    >
    >




  3. #3
    WendyUK
    Guest

    Re: Do you wish to clear clipboard memory?

    You are a wonderful person, and have saved my sanity - thank you so much.

    Wendy x

    "Tom Ogilvy" wrote:

    > after each paste and before closing
    >
    > application.CutCopyMode = False
    >
    > or around the closing command
    >
    > Application.DisplayAlerts = False
    > ' closing code
    > Application.DisplayAlerts = True
    >
    > --
    > Regards,
    > Tom Ogilvy
    >
    > "WendyUK" <WendyUK@discussions.microsoft.com> wrote in message
    > news:145ABE68-C0DF-4B36-A649-62141AC2250A@microsoft.com...
    > > I have a macro that is accessing multiple spreadsheets and extracting data
    > > and pasteing to a summary spreadsheet.
    > >
    > > This is working fine, except when it closes each sheet, I get the message
    > > "You have data in your clipboard do you wish to save or clear memory" -

    > how
    > > can I skip this or switch it off?
    > >
    > > Any help would be gratefully received, its driving me nuts - whats the

    > point
    > > of having a macro if I have to sit there and press return after each
    > > update!!!
    > >
    > > Thank you,
    > >
    > > Wendy
    > > Telford
    > >
    > >

    >
    >
    >


+ 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