I'm running into an error when trying to use a macro to copy a checkbox from one cell and paste it in another cell. "Run-time error '1004': The item with the specified name wasn't found".
Can someone help me please?
Can someone help me please?
VBA Code:
Sub Macro13()
'
' Macro13 Macro
'
'
ActiveSheet.Shapes.Range(Array("Check Box 19")).Select
Selection.Copy
Range("H60").Select
ActiveSheet.CheckBoxes.Add(573.75, 1569, 19.5, 22.5).Select
ActiveSheet.Paste
ActiveSheet.Shapes.Range(Array("Check Box 163")).Select
End Sub