Forum Discussion

BrooksN's avatar
BrooksN
Copper Contributor
Apr 01, 2025

Excel

I want to disable this annoying prompt. can anyone help?

1 Reply

  • You may considering alternative way like below:

     

    1. Use VBA to Suppress the Popup
    • You can create a VBA macro to automate the copy process without triggering the "Copy Picture" popup:
    Sub CopyWithoutPopup()
        Range("A1:B10").Copy ' Adjust the range as needed
        Application.CutCopyMode = False
    End Sub

     

    • This macro copies the specified range without invoking the popup.
    1. Keyboard Shortcut Alternatives
    • Instead of using the "Copy Picture" feature, try using standard copy shortcuts like Ctrl + C for regular copying.
    1. Check Excel Options
    • Go to File > Options > Advanced and look for settings related to clipboard or copy/paste behavior. While this won't directly disable the popup, tweaking these settings might reduce its occurrence.

Resources