Hello,

How do I deselect after the code is finished copying and pasting in this Macro Button?

Sub Nullstill()
     'Start over with the items
If MsgBox("Dette vil nullstille alle varelinjer." & vbNewLine & vbNewLine & "Er du sikker?", vbOKCancel) = vbCancel Then Exit Sub

   Range("BQ13:BZ40").Copy
   Range("C13:L40").Select
   ActiveSheet.Paste
      
    
End Sub

I tried adding Application.CutCopyMode = False under ActiveSheet.Paste but it makes no difference...


Thanks in advance