Using the Macro Dialog box, there is no way to pass a arguments to a Macro.
Therefore, if a Macro has arguments it will not appear in the dialog box's list.
Even if its arguments are optional.
If a Macro has only optional arguments, it can be called from the Macro Dialog box by typing the name of the maco into the textbox (even though that name does not appear on the list.)
Instead of introducing new arguments, you could make numBeeps an optional argument.
If numBeeps equals its default value, then multiBeeps was called from the Macro dialog box (or was called by another macro that passed no argument).
Otherwise, multBeep was called by some other macro, which did pass an argument.
Since your numBeeps is type Variant, an IsMissing test could do the same thing.
Bookmarks