K
ksgoodwin
I have made simple Macros to paste objects (Autoshapes) into various
cells.
Sub Macro1()
' Keyboard Shortcut: Ctrl+q
ActiveSheet.Shapes("Group 100").Select
Selection.Copy
ActiveCell.Select
ActiveSheet.Paste
ActiveCell.Select
End Sub
I would like not to use Macros but instead use a Drop Down Menu.
Ideas?
Ken
cells.
Sub Macro1()
' Keyboard Shortcut: Ctrl+q
ActiveSheet.Shapes("Group 100").Select
Selection.Copy
ActiveCell.Select
ActiveSheet.Paste
ActiveCell.Select
End Sub
I would like not to use Macros but instead use a Drop Down Menu.
Ideas?
Ken