Userform hanging after show

  • Thread starter Thread starter Bishop
  • Start date Start date
B

Bishop

I have the following code:

With Worksheets("whatever")
..
..
..
Call ShowAveCrePerRepBanSSProgInd
For RowCount = Start To LastRow
.Range("R" & RowCount).Formula = _
 
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.
 
Back
Top