Paste Selection to value
I have had this piece of code in my Personal.xls file for years. It is very handy when you are sending files to colleagues and want to reduce the file size or complexity.
Sub PasteValue()
'
' Keyboard Shortcut: Ctrl+Shift+V
'
Selection.Copy
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
Application.CutCopyMode = False
End Sub
Select the section you want to turn to values and press Ctrl+Shift+V





