A family of Microsoft word processing software products for creating web, email, and print documents.
This must be achievable in the Word GUI for my project. I got my answer offline. It's simply listing the child macros by name from within a parent macro:
Sub parentmacro()
'
' Run all child macros.
'
child1
child2
child3
End Sub
Thanks to everyone for weighing in. My needs are resolved.