Userform hanging after show

B

Bishop

I have the following code:

With Worksheets("whatever")
..
..
..
Call ShowAveCrePerRepBanSSProgInd
For RowCount = Start To LastRow
.Range("R" & RowCount).Formula = _
 
J

Joel

Check to see how the Call SomeSubProcedure function eds. It probably does a
hide or something that alows the code to continue. You code is just waiting
for the form to close before continuig.
 
Top