Is it possible to ADAPT this code so that IF less than (<99) sheets are the
case then MACRO2 runs,
If there is 99 sheets then to RUN this Copy Code ?

Sub Macro1()
With ThisWorkbook
If .Worksheets.Count < 99 Then Exit Sub ' Macro2 to run if LESS THAN 99
instead of exit,
BUT
still need EXIT SUB, so creation of a new workbook copy
does
not go ahead when les than 99 sheets.
Worksheets(Array("Enter - Exit Page", "Template")).Copy
End With
End Sub


Think it is asimply step tried:

With ThisWorkbook
If .Worksheets.Count < 99 Then Macro2

Worksheets(Array("Enter-Exit Page", "Template")).Copy
End With
End Sub

But it ALSO creates a COPY, as it does not EXIT the SUB after running
Macro2.


Corey....