Using a Personal workbook with macros, how do I make it so a macro runs as soon as you open any workbook? I've found not-quite-solutions to this (code is below), but it doesn't do what I need because it only works when you open Excel for the first time. I want to be able to keep Excel open, and any new workbooks that are opened will trigger a macro to run.
Sub workbook_open()
MsgBox ("Hello.")
End Sub