NoMenClature
New Member
- Joined
- May 14, 2019
- Messages
- 3
- Office Version
- 365
- Platform
- Windows
This macro worked pre Windows 11 but now only opens the notepad blank without the selected cells from Excel:
VBA Code:
Sub CopySelectionNotepad()
' Keyboard Shortcut: Ctrl+shift+q
With Application
Selection.Copy
Shell "Notepad.exe", 3
SendKeys "^v"
VBA.AppActivate .Caption
.CutCopyMode = False
End With
End Sub