Quick question here:
If I want to copy a cell (say... the input sheet, cell C4) and paste only its value somewhere else (say... the results sheet, cell B4), is there a better way to do it than
?
I was thinking something along the lines of using [C4].Copy(Destination) but having it know to only put the values. Just trying to clean up my code a bit, thanks in advance!
If I want to copy a cell (say... the input sheet, cell C4) and paste only its value somewhere else (say... the results sheet, cell B4), is there a better way to do it than
Code:
[C4].Copy
Sheets("Results").Range("B4").PasteSpecial Paste:=xlPasteValues, Operation:= _
xlNone, SkipBlanks:=False, Transpose:=False
I was thinking something along the lines of using [C4].Copy(Destination) but having it know to only put the values. Just trying to clean up my code a bit, thanks in advance!
Last edited: