+ Reply to Thread
Results 1 to 5 of 5

Speed up if...next VBA

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    08-22-2012
    Location
    Czech republic
    MS-Off Ver
    Excel 2010
    Posts
    119

    Speed up if...next VBA

    Dear all,

    having this macro involved in my list, it takes ages until it is done (200 sec aprox.). As it should be just a part of longer macro, I need to figure out, how to speed it up.
    Any idea I can understand? ( I am macro begginers. :-) )

    This code should be instead of VLOOKUP function. TREndRow has value 1500, PocetBridge around 4000. It goes one by one - I thing that is why is is so slow.


    Sub svyhledatBridge()
    
    
    Application.ScreenUpdating = False
    Application.DisplayAlerts = False
    Application.Calculation = xlCalculationManual
    
    
    Dim TBEndRow As Long
    TBEndRow = Sheets("Trial Balance").Range("B9").End(xlDown).Row
    
    Dim pocetBridge As Long
    pocetBridge = Sheets("Bridge").Range("A2").End(xlDown).Row
    
      
       '
       For j = 2 To pocetBridge
              
       For i = 4 To TBEndRow
          
             
              If Sheets("Trial Balance").Cells(i, 20) = Sheets("Bridge").Cells(j, 1) Then
                  
                 Sheets("Trial Balance").Cells(i, 24) = Sheets("Bridge").Cells(j, 7)
                 Exit For
              End If
            Next i
       Next j
    
    Application.ScreenUpdating = True
    Application.DisplayAlerts = True
    Application.Calculation = xlCalculationAutomatic
    
    End Sub

  2. #2
    Valued Forum Contributor
    Join Date
    01-19-2010
    Location
    Melbourne Australia
    MS-Off Ver
    latest is Excel 2016. have older versions
    Posts
    624

    Re: Speed up if...next VBA

    Hi olwy,

    it would help us if you had a sample workbook to post, we always work better if we can see the spreadsheet and experiment with solutions

    Jmac1947

  3. #3
    Forum Contributor
    Join Date
    08-22-2012
    Location
    Czech republic
    MS-Off Ver
    Excel 2010
    Posts
    119

    Re: Speed up if...next VBA

    Here is the file where I need it - it is without company data, so it looks a litte bit strange.
    If anybody has more time, please, check, how could I replace all formulas in green. Normally, they are on each row.
    (run macro separatelly, my composed macro will not work - as the Trial balance sheet is deleted.

    Thanks a lot for any hint.
    UpFile makrohrátky - funkční 01 - Copy.xlsm

  4. #4
    Forum Expert nilem's Avatar
    Join Date
    10-22-2011
    Location
    Ufa, Russia
    MS-Off Ver
    2013
    Posts
    3,377

    Re: Speed up if...next VBA

    Hi Olwy,
    try it
    Sub ertert()
    Dim x, i&
    With Sheets("Bridge")
        x = .Range("A1:G" & .Cells(Rows.Count, 1).End(xlUp).Row).Value
    End With
    With CreateObject("Scripting.Dictionary")
        .CompareMode = 1
        For i = 1 To UBound(x)
            .Item(x(i, 1)) = x(i, 7)
        Next i
    
        With Sheets("Trial Balance")
            x = .Range("T4", .Cells(Rows.Count, "T").End(xlUp)).Value
        End With
        For i = 1 To UBound(x)
            If .Exists(x(i, 1)) Then x(i, 1) = .Item(x(i, 1)) Else x(i, 1) = "not found"
        Next i
    End With
    Sheets("Trial Balance").Range("X4").Resize(i - 1).Value = x
    End Sub

  5. #5
    Forum Contributor
    Join Date
    08-22-2012
    Location
    Czech republic
    MS-Off Ver
    Excel 2010
    Posts
    119

    Re: Speed up if...next VBA

    Holly crab,
    you are genious. It takes less than wink. I cannot count it on seconds. Great, I am going to study, what has happend.
    Olwy

+ 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. Speed up VBA Sub
    By shawnweber in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 01-19-2014, 07:30 AM
  2. VBA speed up
    By bensonsearch in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 11-18-2011, 02:46 AM
  3. How to speed up VBA?
    By Cactus in forum Excel General
    Replies: 3
    Last Post: 06-14-2005, 11:05 AM
  4. Speed me up please with VBA
    By cdjsb in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 05-12-2005, 11:34 AM

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