+ Reply to Thread
Results 1 to 6 of 6

Optimize Code

Hybrid View

  1. #1
    Registered User
    Join Date
    05-27-2011
    Location
    Virginia
    MS-Off Ver
    Excel 365
    Posts
    94

    Optimize Code

    Hi,

    Thanks in advance to you experts for your help. Is is possible for the following code to be improved in speed as it takes 90 seconds with 150,00 rows?
    
    Sub CopyInfoToAdjacentCells()
        Dim Firstrow As Long
        Dim Lastrow As Long
        Dim Lrow As Long
        Dim CalcMode As Long
        Dim ViewMode As Long
        With Application
            CalcMode = .Calculation
            .Calculation = xlCalculationManual
            .ScreenUpdating = False
        End With
        With ActiveSheet
            .Select
            ViewMode = ActiveWindow.View
            ActiveWindow.View = xlNormalView
            .DisplayPageBreaks = False
            Firstrow = 2
            Lastrow = .Cells(.Rows.Count, "A").End(xlUp).Row
            For Lrow = Lastrow To Firstrow Step -1
                With .Cells(Lrow, "A")
                    If Not IsError(.Value) Then
                        If Left(.Cells, 7) Like "TOTAL $*" Then
                            If .Offset(-1, 0).Value Like "FIXED *" Then
                                .Offset(0, 7).FormulaR1C1 = "=TRIM(MID(SUBSTITUTE(RC[-7],"" "",REPT("" "",99)),100,99))"
                            End If
                        End If
                    End If
                End With
                With .Cells(Lrow, "A")
                    If Not IsError(.Value) Then
                        If Left(.Cells, 5) Like "TITLE*" Then
                            .Offset(0, 8).FormulaR1C1 = "=MID(RC[-8],SEARCH(""TITLE"",RC[-8])+5,SEARCH(""PROJECT"",RC[-8])-SEARCH(""TITLE"",RC[-8])-6)"
                        End If
                    End If
                End With
                With .Cells(Lrow, "A")
                    If Not IsError(.Value) Then
                        If Left(.Cells, 5) Like "TITLE*" Then
                            If Not .Offset(1, 0) Like "RUN *" Then
                                .Offset(0, 9).FormulaR1C1 = "=LEFT(R[1]C[-9],(FIND(""RUN "",R[1]C[-9],1)-1))"
                            End If
                        End If
                    End If
                End With
                Next Lrow            
        End With
        ActiveWindow.View = ViewMode
        With Application
            .ScreenUpdating = True
            .Calculation = CalcMode
        End With
    End Sub
    Thanks again for your help.

  2. #2
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Optimize Code

    Hello MusicMan,

    This should run a bit faster but that is a lot of rows that will need re-calculating once the macro is done.

    Sub CopyInfoToAdjacentCells()
    
        Dim CalcMode    As Long
        Dim Cell        As Range
        Dim Lrow        As Long
        Dim Rng         As Range
        Dim Text        As String
        Dim ViewMode    As Long
        
            With Application
                CalcMode = .Calculation
                .Calculation = xlCalculationManual
                .ScreenUpdating = False
            End With
            
            ViewMode = ActiveWindow.View
            ActiveWindow.View = xlNormalView
            
                ActiveSheet.DisplayPageBreaks = False
                
                Set Rng = Range("A2", Cells(Rows.Count, "A").End(xlUp))
                
                For Lrow = Rng.Rows.Count + Rng.Row - 1 To Rng.Row Step -1
                    With Rng.Cells(Lrow, 1)
                        If Not IsError(Cell) Then
                            If .Value Like "TOTAL $*" And .Offset(-1, 0) Like "FIXED *" Then
                                .Offset(0, 7).FormulaR1C1 = "=TRIM(MID(SUBSTITUTE(RC[-7],"" "",REPT("" "",99)),100,99))"
                            Else
                                If .Value Like "TITLE*" Then
                                    .Offset(0, 8).FormulaR1C1 = "=MID(RC[-8],SEARCH(""TITLE"",RC[-8])+5,SEARCH(""PROJECT"",RC[-8])-SEARCH(""TITLE"",RC[-8])-6)"
                                    If .Offset(1, 0) Like "RUN *" Then
                                        .Offset(0, 9).FormulaR1C1 = "=LEFT(R[1]C[-9],(FIND(""RUN "",R[1]C[-9],1)-1))"
                                    End If
                                End If
                            End If
                        End If
                    End With
                Next Lrow
            
            ActiveWindow.View = ViewMode
            
            With Application
                .ScreenUpdating = True
                .Calculation = CalcMode
            End With
            
    End Sub
    Sincerely,
    Leith Ross

    Remember To Do the Following....

    1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.
    2. Thank those who have helped you by clicking the Star below the post.
    3. Please mark your post [SOLVED] if it has been answered satisfactorily.


    Old Scottish Proverb...
    Luathaid gu deanamh maille! (Rushing causes delays!)

  3. #3
    Registered User
    Join Date
    05-27-2011
    Location
    Virginia
    MS-Off Ver
    Excel 365
    Posts
    94

    Re: Optimize Code

    Thanks a million Leith I will test it tomorrow and let you know the results.

  4. #4
    Registered User
    Join Date
    05-27-2011
    Location
    Virginia
    MS-Off Ver
    Excel 365
    Posts
    94

    Re: Optimize Code

    Thanks Leith your code does cut a few seconds off my time.

  5. #5
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2503 (Windows 11 Home 24H2 64-bit)
    Posts
    90,563

    Re: Optimize Code

    For future reference, you have been a member long enough to know that we expect detailed thread titles. Yours in this thread does not really meet those requirements. Please be more explicit in future. Thanks.
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help. It's a universal courtesy.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    NB:
    as a Moderator, I never accept friendship requests.
    Forum Rules (updated August 2023): please read them here.

  6. #6
    Registered User
    Join Date
    05-27-2011
    Location
    Virginia
    MS-Off Ver
    Excel 365
    Posts
    94

    Re: Optimize Code

    Ok thanks I will in the future.

+ 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. optimize code if possible
    By mohadin in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 07-01-2019, 06:18 AM
  2. How can I optimize my code
    By viettest in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 04-08-2019, 05:02 PM
  3. [SOLVED] Optimize my VBA code
    By modytrane in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 02-07-2019, 11:25 AM
  4. Need to optimize the code
    By pm.patel189 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 02-05-2018, 01:06 PM
  5. Optimize a code
    By pezalmendra in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 03-06-2015, 05:31 PM
  6. Optimize code
    By miso.dca in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 02-08-2011, 03:35 PM
  7. Optimize VBA code
    By doodlebug in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 05-22-2007, 07:53 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