I need upon opening a spreadsheet to produce a button and automatically assign a macro I previously created. Let's call this macro "edit_colour".
I know how to execute a MsgBox with "Hello World" using the following,
Private Sub Workbook_Open()
MsgBox "Hello World"
End Sub