In Excel 2013:
I created a module with the following code:
Sub PasteFormatting()
ActiveCell.PasteSpecial (xlPasteValues)
End Sub
In the macros, I set PasteFormatting as CTRL + V However, when I select a cell in my sheet, and do "ctrl + v", I get the error:
Run-time error '1004': PasteSpecial method of Range class failed
This is the first time I use macros and nowhere have I found something so basic to help me.
All I want to do is copy something in my clipboard, go in Excel, select a cell, and paste without changing the format of my cell.