I have Check-Boxes with caption of country Names and a OK button on User-form,
User will Mark required Check-Boxes and click OK to submit the form.
Expected Result: For each checked Box there is a Macro to perform.
How do I make OK button to perform macro on Selected Countries which are Check-Marked by User?
and
Is the following code correctly handle the situation? or there is other way of doing that?
If ActiveDocument.CeemeaFinallist.EasternEurope("CheckBox1").CheckBox.Value = True Then
Application.Run MacroName:="Normal.NewMacros.CEEMEA2"
Else
End If
How do I Select all Check-Boxes at once?


Try iterating over the controls and firing the macro where the checkbox is set to True: