View Single Post
 
Old 01-23-2014, 09:45 PM
excelledsoftware excelledsoftware is offline Windows 7 64bit Office 2003
IT Specialist
 
Join Date: Jan 2012
Location: Utah
Posts: 455
excelledsoftware will become famous soon enough
Default

I just make a counter variable and display it somewhere where the user can see. it.

If I am using a for loop like
Code:
Sub LoopWithCounter ()

dim Counter as integer, x as integer
    for x = 1 to 100
    'insert code here
        counter = 100 - x & " Records Remaining."
        range("a1").value = counter
    next x
    
    range("a1").ClearContents
    msgbox "All Records Complete!"
End Sub
May not be exactly what you are looking for but it's a pretty simple solution.
Reply With Quote