I have a recorded macro to copy/paste values (it performs some other functions too). The problem is that it is too long (there are 56 ranges to copy from/paste to). I think it require a little bit trimming. Any suggestion
[codebox]Range(“M8:M33”).Copy
Range(“N8”).PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range(“P8:P33”).Copy
Range(“Q8”).PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range(“R8:R33”).Copy
Range(“S8”).PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False[/codebox]