I've tried multiple versions of updating the below code from recording my actions to make it available to me on any active sheet. Every time I tried to update it to Copy the (Array("QuickLinks")) from the Quick Links Sheet and then paste it on the active sheet I get errors.
Thank you for your help!
VBA Code:
Sub CopyQuickLinks()
'NEED the Active Sheet to be "Quick Links"
ActiveSheet.Shapes.Range(Array("QucikLinks")).Select
Selection.Copy
Range("E1").Select
ActiveSheet.Paste
Range("C1").Select
End Sub
Thank you for your help!