+ Reply to Thread
Results 1 to 5 of 5

Super slow VBA code on Intel Core i7 with Max RAM

Hybrid View

  1. #1
    Forum Expert
    Join Date
    12-14-2012
    Location
    London England
    MS-Off Ver
    MS 365 Office Suite.
    Posts
    8,448

    Re: Super slow VBA code on Intel Core i7 with Max RAM

    1. Reduce the number of times VBA reads from or writes to excel.

    2. Reduce the number of actions in a loop

    eg:

    
                If c < 77 Then
                
                    If ActiveCell.Offset(0, c).Value = 5 Then ActiveCell.Offset(0, c).Value = "Great"
                    If ActiveCell.Offset(0, c).Value = 4 Then ActiveCell.Offset(0, c).Value = "Good"
                    If ActiveCell.Offset(0, c).Value = 3 Then ActiveCell.Offset(0, c).Value = "OK"
                    If ActiveCell.Offset(0, c).Value = 2 Then ActiveCell.Offset(0, c).Value = "Poor"
                    If ActiveCell.Offset(0, c).Value = 1 Then ActiveCell.Offset(0, c).Value = "Bad"
                
                End If
    In this scenario If your cell contains 1, you go through 5 if statements to return "Bad"

    Try This
    Enter this line outside your loop

    AStatus =   Array("", "Bad", "Poor", "OK","Good", "Great")
    Inside your loop enter

    ActiveCell.Offset(0, c).Value = AStatus(ActiveCell.Offset(0, c).Value)

    3. Use Excel to do what excel does best and VBA to do what it does best.

    In your code you do something like this twice:-

    
            For y = 1 To h_rec_count
            
                teststr = WorksheetFunction.Index(Range("heard_array"), y, 1)
                pos = InStr(h_array_vals, teststr)
                
                If pos > 0 Then
                    ActiveCell.Offset(0, WorksheetFunction.Index(Range("heard_array"), y, 2) - 1).Value = teststr
                End If
            
            Next y
    If h_rec_count = 1000

    Then you are reading 1000 excel cells into VBA one at a time

    Looking for some text in each cell

    If you find the text you are modifying a cell in excel.

    It is a lot faster to use a helper column.

    a. Insert a formula in an empty column to do the hard work.
    b. Copy Paste your Values from your helper column into your Ammended Column
    c. Clear your Helper column.

    So three lines of code and no loop as opposed to your 1000 loops and six lines of code.
    Last edited by mehmetcik; 10-18-2017 at 01:45 PM.
    My General Rules if you want my help. Not aimed at any person in particular:

    1. Please Make Requests not demands, none of us get paid here.

    2. Check back on your post regularly. I will not return to a post after 4 days.
    If it is not important to you then it definitely is not important to me.

+ 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. [SOLVED] VBA countifs super slow
    By Gekko42 in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 07-03-2016, 04:35 AM
  2. Super Slow Excel
    By graemearthur in forum Excel General
    Replies: 12
    Last Post: 12-23-2015, 03:38 PM
  3. General help simplifying my super slow VB code PLEASE :-D
    By blackcat_78uk in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 04-30-2015, 05:22 PM
  4. General help simplifying my super slow VB code PLEASE :-D
    By blackcat_78uk in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 04-30-2015, 04:02 PM
  5. 2003 code runs super slow in 2010
    By emanresu65 in forum Excel Programming / VBA / Macros
    Replies: 20
    Last Post: 01-04-2013, 05:25 PM
  6. speeding up code that is super slow
    By cabinetguy in forum Excel Programming / VBA / Macros
    Replies: 28
    Last Post: 05-19-2011, 12:24 PM
  7. Excel CPU Usage - Single Core/Multi Core (balanced/unbalanced?)
    By winstontj in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 02-03-2010, 07:22 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