Forum Discussion
Locky81
Aug 22, 2022Copper Contributor
Result from macro copy and paste error
Hi Team, I have a value in a cell that I'm trying to simply copy and paste (as value only), that I've programmed into a simple macro. When this value is the product of a formula the macro driven ...
- Aug 22, 2022
Locky81 Understood your problem. Actually you are pasting twice. So you do not need second ActiveSheet.Paste line. Delete it from your code. I have comment it in my below codes.
Sub EXECUTECOPYPASTE() Range("K5").Select Selection.Copy Range("L15").Select Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _ :=False, Transpose:=False 'ActiveSheet.Paste Application.CutCopyMode = False End SubBasically you can do it by below single line code.
Sub CopyValue() Range("L15").Value = Range("K5").Value2 End Sub
Harun24HR
Aug 22, 2022Bronze Contributor
Post you current code here so that we can review it. When this value is the product of a formula the macro driven, then you do not need copy and paste. You can put that value to a cell directly via code.
Locky81
Aug 22, 2022Copper Contributor
That's my created Macro - just a copy and paste to a different cell. The cell populates with my number (value) only if another cell is Triggered to display TRUE. If TRUE my copy-target cell for the Macro changes from a zero to a number.