excel - Immediate Box (Debug window) Display Separately -
i sorry if silly question. display message box similar immediate
window sit "always on top" , scroll countdown while not interrupting vba program.
i crunching numbers 40,000 rows , each run takes 15 minutes. don't know if it's still running or when current vba code complete.
does have suggestions?
use status bar:
application.statusbar = "row " & rownum & " of " & rowcount
at end, clear status bar:
application.statusbar = false
Comments
Post a Comment