How To Set paste Values as Default Paste in Excel

This post will guide you how to set paste values as default paste in Excel. How do I set the default paste special in Excel to paste only values when using Ctrl+v keys. when you want to copy data from a selected range of cells and then pasted it to another range with Ctrl + V keys on your keybaord, and you only want to copy cell values and without including cell formats. How to do it. you can use an Excel VBA Macro to achive the result.

1. Set Paste Values as Default Paste in Excel

If you only want to set paste values as default paste in your worksheet, and you can use an Excel VBA Macro to accomplish it. Just do the following steps:

Step1: open your excel workbook and then click on “Visual Basic” command under DEVELOPER Tab, or just press “ALT+F11” shortcut.
Get the position of the nth using excel vba1

Step2: then the “Visual Basic Editor” window will appear.

Step3: click “Insert” ->”Module” to create a new module.
export each sheet to csv2

Step4: paste the below VBA code  into the code window. Then clicking “Save” button.

set paste values as default paste 1
Sub SetPasteDefaultasValue()
     Selection.PasteSpecial Paste:=xlPasteValues
End Sub

Step5: back to the current worksheet, click on Macros button under Code group, and the Macro dialog will open. then click Options button in the Macro dialog box.

set paste values as default paste2

Step6: you need to enter v key under the Shortbut key section in Macro Options dialog box. click on Ok button to take effect for changes.

set paste values as default paste3

Step7: Closing the Macro dialog box. and try to copy a cell with formatting style, and then paste it to antoher cell. You would see that only values will be copied.

set paste values as default paste4
set paste values as default paste5

2. Video: Set paste Values as Default Paste in Excel

This video will show you how to set paste values as default paste in Excel using a VBA Code.

Leave a Reply