Forum Discussion
BrooksN
Apr 01, 2025Copper Contributor
Excel
I want to disable this annoying prompt. can anyone help?
1 Reply
You may considering alternative way like below:
- 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.
- Keyboard Shortcut Alternatives
- Instead of using the "Copy Picture" feature, try using standard copy shortcuts like Ctrl + C for regular copying.
- 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.