A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
At first you need a PERSONAL.XLSB which is loaded by Excel at startup automatically.
Create and save all your macros in a single workbook - Office Support
Copy the code below into that file into a regular module.
Close the VBA editor and press ALT+F8 in Excel
You should now see the macro inside your personal workbook, assign CTRL+SHIFT+V to the macro. There are also other ways shown in this article:
Close Excel and save the PERSONAL.XLSB file
That's it.
Andreas.
Sub PasteValues()
ActiveCell.PasteSpecial xlPasteValues
End Sub