One way to do this is to write a "Master" macro that calls Macro1,
Macro2, and Macro3 according to the logic you describe. Perhaps
something along the lines of
Sub Master()
Ask question 1
If User say Yes then
Macro1
endif
Ask Question 2
If User say Yes then
Macro2
endif
Ask Question 3
If User say Yes then
Macro1
endif
end sub
Bookmarks