+ Reply to Thread
Results 1 to 6 of 6

Macro keep making excel go to non responding.

Hybrid View

  1. #1
    Registered User
    Join Date
    04-23-2022
    Location
    london
    MS-Off Ver
    office365
    Posts
    93

    Macro keep making excel go to non responding.

    Hi

    I have this macro and it works OK with a small amount of data but now I have over 40,000 rows of data I need to go through and it keeps coming up not responding. Is there anyone way I can make it so it dont keep crashing?

    Dim newRow As Range, oldRow As Range, shNew As Worksheet, shOld As Worksheet, match As Boolean
    For Each shNew In Sheets
        If LCase(shNew.Name) Like "new*" Then Exit For
    Next
    For Each shOld In Sheets
        If LCase(shOld.Name) Like "old*" Then Exit For
    Next
    
    For Each newRow In shNew.UsedRange.Rows
        match = False
        For Each oldRow In shOld.UsedRange.Rows
            If oldRow.Columns("F") = newRow.Columns("F") _
            And oldRow.Columns("J") = newRow.Columns("J") _
            And oldRow.Columns("K") = newRow.Columns("K") Then
                If Application.CountA(oldRow.Resize(1, 4)) = 0 Then
                    ' delete new record from new sheet.
                    newRow.EntireRow.Clear
                    match = True
                    Exit For
                Else
                    ' paste new record on top of the matching row in old sheet.
                    newRow.Copy
                    shOld.Paste oldRow.Cells(1)
                    match = True
                    Exit For
                End If
            End If
        Next
        If Not match Then
            ' paste new record at bottom
            With shOld
                newRow.Copy
                shOld.Paste .UsedRange.Cells(.UsedRange.Count).EntireRow.Cells(1).Offset(1, 0)
            End With
        End If
    Next
    
    shOld.Name = "old " & Format(Now, "mm-dd-yyyy") & "."
    shNew.Name = "New " & Format(Now, "mm-dd-yyyy") & "."
    End Sub

  2. #2
    Forum Expert Mumps1's Avatar
    Join Date
    10-10-2012
    Location
    Toronto, Canada
    MS-Off Ver
    Excel 2010, 365
    Posts
    8,027

    Re: Macro keep making excel go to non responding.

    It would be easier to help and test possible solutions if you could attach a copy of your file. Explain in detail what you want to do referring to specific
    cells, rows, columns and sheets using a few examples from your data (de-sensitized if necessary). See the yellow banner at the top of this page for instructions to attach a file.
    You can say "THANK YOU" for help received by clicking the Star symbol at the bottom left of the helper's post.
    Practice makes perfect. I'm very far from perfect so I'm still practising.

  3. #3
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Arrow Re: Macro keep making excel go to non responding.

    Quote Originally Posted by gareth7412 View Post
    it keeps coming up not responding. Is there anyone way I can make it so it dont keep crashing?
    Hi, do not confuse crashing and not responding as that just means Excel is busy with the execution of a VBA procedure …

    Just try desactivating ScreenUpdating, EnableEvents, …

  4. #4
    Registered User
    Join Date
    04-23-2022
    Location
    london
    MS-Off Ver
    office365
    Posts
    93

    Re: Macro keep making excel go to non responding.

    I may be confusing it marc.

    What it is I have this workbook of which has data that I have used and unused data.

    In the sheet called OLD that is the data that I use and when I use it I cut and paste the data elsewhere leaving the cells blank. This is shown in rows 6 & 7.

    I then do a new download of which downloads all the data that ive used and new data.

    What im trying to do is compare the worksheets and if there is no data in coulmns A-D on a particular row in sheet called OLD then I need that row completely deleting from the new sheet. The data in columns J & K in both sheets will be exactly the same as they are unique so that would probably be best way of matching and deleting.

    There will be upto 50,000 entries in the workbooks.

    See attachment.

    MARC:-Just try desactivating ScreenUpdating, EnableEvents, How do I do that?
    Attached Files Attached Files

  5. #5
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Cool Try this …


    Quote Originally Posted by gareth7412 View Post
    if there is no data in coulmns A-D on a particular row in sheet called OLD then I need that row completely deleting from the new sheet. The data in columns J & K in both sheets will be exactly the same as they are unique
    According to your attachment a VBA demonstration for starters :

    PHP Code: 
    Sub Demo1()
              Const 
    "&"" ""&"11
                Dim Rg 
    As RangeVWRc As RangeXR&
        
    With Sheet3.[A1].CurrentRegion.Columns
            
    If Application.CountBlank(.Item(1)) Then
                Set Rg 
    Sheet4.[A1].CurrentRegion
                V 
    Rg.Parent.Evaluate(Rg.Columns(10).Address Rg.Columns(K).Address)
                
    = .Parent.Evaluate(.Item(10).Address & .Item(K).Address)
                
    Application.ScreenUpdating False
            
    For Each Rc In .Item(1).SpecialCells(4)
                
    Application.Match(W(Rc.Row1), V0)
                If 
    IsNumeric(XThen R 1Rg(XK).ClearContentsW(Rc.Row1) = Empty
            
    Next
            
    If R Then
                Rg
    .Sort Rg.Cells(K), 1Header:=1
                Rg
    .Parent.Rows(Rg.Rows.Count 1).Resize(R).Delete
            End 
    If
                
    Application.ScreenUpdating True
                Set Rg 
    Nothing
            End 
    If
        
    End With
    End Sub 
    ► Do you like it ? ► So thanks to click on bottom left star icon « Add Reputation » !

  6. #6
    Registered User
    Join Date
    04-23-2022
    Location
    london
    MS-Off Ver
    office365
    Posts
    93

    Re: Macro keep making excel go to non responding.

    Give me a day or so to test but looks like it sorted.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Excel not responding after running a macro with a loop [HELP]
    By soula1998 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 04-25-2020, 06:28 PM
  2. Problems with macro freezing excel, not responding
    By selectio in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 03-07-2020, 02:26 PM
  3. Excel stops responding when I run my probably wrong little macro
    By VBAcuredmydepression in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 11-21-2017, 12:31 PM
  4. Excel Not Responding When Macro Is Ran on a Mac
    By ghors47 in forum For Other Platforms(Mac, Google Docs, Mobile OS etc)
    Replies: 0
    Last Post: 07-16-2014, 03:15 PM
  5. [B]Sub Workbook_Open() making excel crash/ programme not responding!!!!![/B]
    By strud in forum Excel Programming / VBA / Macros
    Replies: 19
    Last Post: 05-15-2013, 08:18 AM
  6. Excel not responding on macro run
    By chbrandt in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 08-05-2010, 02:49 PM
  7. Macro hangs my excel (not responding)
    By Jeff in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 09-08-2005, 08:05 PM

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