↧
Answer by mrbungle for vba excel loop_ show iteration number while running...
I like to use count = 0 For....'your code count = count + 1 Application.StatusBar = Count nextDisplays at the bottom status bar. Simple and to me does not weigh heavy.
View ArticleAnswer by Alex for vba excel loop_ show iteration number while running (not...
Use StatusBar and it will shown on the Statusbar (Duh): Application.StatusBar = "Current iteration: "& i3
View ArticleAnswer by SmarterThanYogi for vba excel loop_ show iteration number while...
You could add this inside your loop: Range("A1") = i3This would set the top left cell to the number to the current iteration, though it wont be very smooth.
View Articlevba excel loop_ show iteration number while running (not progress bar)
I have 250.000 lines and I wanted to erase all lines that have a 0 in col AR. This takes too much time using a filter and deleting only visible cells, so I wrote a code. The thing is that I would like...
View Article