+ Reply to Thread
Results 1 to 7 of 7

macro monitor

Hybrid View

  1. #1
    Registered User
    Join Date
    08-29-2011
    Location
    Manchester
    MS-Off Ver
    Excel 2003
    Posts
    27

    macro monitor

    Hi all, I am running a macro over a large spreadsheet (~100000 lines). Obviously this will take sometime. Is there a way of knowing the progress of the macro? Thanks in advance, Chloe

    The icon is saying "Application not responding" but when I use the 'top' command excel seems to be working - can I assume it is just taking some time?
    Last edited by chloe88; 08-30-2011 at 06:04 AM.

  2. #2
    Forum Expert Domski's Avatar
    Join Date
    12-14-2009
    Location
    A galaxy far, far away
    MS-Off Ver
    Darth Office 2010
    Posts
    3,950

    Re: macro monitor

    You can update the status bar like this:

    Sub test()
    
    Dim lngMyCount As Long
    Dim lngCountTo As Long
    
    lngCountTo = 10
    
    For lngMyCount = 1 To lngCountTo
        ' Pause just for demo purpose
        Application.Wait (Now + TimeValue("0:00:01"))
        ' Update status bar with record count
        Application.StatusBar = "Processing Record " & lngMyCount & " of " & lngCountTo
    Next lngMyCount
    
    ' Return control of status bar to Excel
    Application.StatusBar = False
    
    End Sub

    Dom
    "May the fleas of a thousand camels infest the crotch of the person who screws up your day and may their arms be too short to scratch..."

    Use code tags when posting your VBA code: [code] Your code here [/code]

    Remember, saying thanks only takes a second or two. Click the little star to give some Rep if you think an answer deserves it.

  3. #3
    Registered User
    Join Date
    08-29-2011
    Location
    Manchester
    MS-Off Ver
    Excel 2003
    Posts
    27

    Re: macro monitor

    Quote Originally Posted by Domski View Post
    You can update the status bar like this:

    Sub test()
    
    Dim lngMyCount As Long
    Dim lngCountTo As Long
    
    lngCountTo = 10
    
    For lngMyCount = 1 To lngCountTo
        ' Pause just for demo purpose
        Application.Wait (Now + TimeValue("0:00:01"))
        ' Update status bar with record count
        Application.StatusBar = "Processing Record " & lngMyCount & " of " & lngCountTo
    Next lngMyCount
    
    ' Return control of status bar to Excel
    Application.StatusBar = False
    
    End Sub

    Dom
    Thank you. Should I add it as a new macro or to the beginning of the existing macro?

  4. #4
    Forum Expert Domski's Avatar
    Join Date
    12-14-2009
    Location
    A galaxy far, far away
    MS-Off Ver
    Darth Office 2010
    Posts
    3,950

    Re: macro monitor

    That's really just an example. Assuming you have a loop of some kind you would need to use similar to this within the loop to update the status bar:

    Application.StatusBar = "Processing Record " & lngMyCount & " of " & lngCountTo

    Don't forget to return control to Excel once the loop has finished and in any error handling within your code.

    Dom

  5. #5
    Forum Expert snb's Avatar
    Join Date
    05-09-2010
    Location
    VBA
    MS-Off Ver
    Redhat
    Posts
    5,649

    Re: macro monitor

    If you have a slick design of the worksheet and well -wrought VBA code you won't need a monitor.
    Post your code so we can help you to speed it up.



  6. #6
    Registered User
    Join Date
    08-29-2011
    Location
    Manchester
    MS-Off Ver
    Excel 2003
    Posts
    27

    Re: macro monitor

    Here is my code,

    Sub DeleteRecords()
    Dim xlCalc As XlCalculation
    Dim rRange As Range

    Sheets("Sheet1").Activate
    'Store current Calculation then switch to manual.
    'Turn off events and screen updating
    With Application
    xlCalc = .Calculation
    .Calculation = xlCalculationManual
    .EnableEvents = False
    .ScreenUpdating = False
    End With


    'Remove any filters
    ActiveSheet.AutoFilterMode = False
    With Range("J1:J" & ActiveSheet.UsedRange.Rows.Count)
    .AutoFilter Field:=1, Criteria1:="Y"
    .SpecialCells(xlCellTypeVisible).EntireRow.Delete
    End With

    'Remove any filters
    ActiveSheet.AutoFilterMode = False

    'Revert back
    With Application
    .Calculation = xlCalc
    .EnableEvents = True
    .ScreenUpdating = True
    End With

    End Sub

  7. #7
    Forum Expert Domski's Avatar
    Join Date
    12-14-2009
    Location
    A galaxy far, far away
    MS-Off Ver
    Darth Office 2010
    Posts
    3,950

    Re: macro monitor

    Please edit your post to include code tags around your code.

    Dom

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1