In Chrome, I can paste text without any formatting using ctrl+shift+V. How can I do something like this in in Microsoft Word?
Asked
Active
Viewed 5.6k times
27
-
3Possible duplicate of [Shortcut in Word or Excel for Special Paste?](https://superuser.com/questions/407113/shortcut-in-word-or-excel-for-special-paste) - this also includes an answer that doesn't require any macros (just 4 keys). – Amos M. Carpenter Aug 06 '18 at 03:07
4 Answers
25
Here are the steps:
- From the View tab, click on Macros -> View Macros
- In the Macros dialog, enter
PasteSpecialin the macro name field and click Create. - Replace the contents of the code editor with the following code:
Sub PasteSpecial()
On Error GoTo errHandler
Selection.PasteSpecial DataType:=wdPasteText
Exit Sub
errHandler:
Selection.Paste
End Sub
- Save and close the code editor
- Go to File tab -> Options -> Customize Ribbon, click on the Customize... button after "keyboard shortcuts:"
- Choose
Macroin the Categories box and choosePasteSpecialin the Macros box. InPress new shortcut keybox, enter ctrl+shift+V, then click Assign. - Click OK to close the Word Options dialog.
fireattack
- 15
- 4
Chin
- 7,883
- 22
- 69
- 95
6
"Paste as plain text" – Universal macro which works with any application
This is AutoHotKey macro which will paste clipboard content as non-formatted text in any application which by default works with formatted text (Word, Excel, PowerPoint, Outlook, Write, you name it.)
Keyboard shortcut: Ctrl + Win + V
^#v:: ;work with clipboard: paste clipboard content as plain text
ClipboardOld := ClipboardAll ;save original clipboard contents
Clipboard = %Clipboard% ;store plain text from clipboard to clipboard
Send ^v ;send the Ctrl+V command
Sleep, 250 ;give some time to finish paste (before restoring clipboard)
Clipboard := ClipboardOld ;restore the original clipboard contents
ClipboardOld = ;clear temporary variable (potentially contains large data)
Return
2
Go to File> Options> Customize Ribbon> [Keyboard Shortcuts] Customize... > All Commands > PastTextOnly> Press new shortcut key: > Assign> Close.
It doesn't need any codes or something!
Eonasdan
- 113
- 6
Amir Fotouhi
- 21
- 2
0
After all these years, Microsoft is finally adding the ability to Shift-Control-V paste as value natively. It's in the Beta versions of Word as of March 2023.
roirraW 'edor' ehT
- 29
- 1
- 6
