Forum Discussion

Locky81's avatar
Locky81
Copper Contributor
Aug 22, 2022
Solved

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 ...
  • Harun24HR's avatar
    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 Sub

     

      Basically you can do it by below single line code.

    Sub CopyValue()
        Range("L15").Value = Range("K5").Value2
    End Sub

Resources