+ Reply to Thread
Results 1 to 7 of 7

Helps to make code faster

  1. #1
    Registered User
    Join Date
    08-14-2011
    Location
    Jakarta, Indonesia
    MS-Off Ver
    Excel 2007
    Posts
    63

    Helps to make code faster

    Dear all,

    I have written code to calculate a usage of an item and other calculation. If I copy my code to a word file it will become 19 pages.
    I am running this code and it takes 45 minutes before I end it.

    The code is checking a data having an excess of 150000 rows.

    Is there anyone kindly enough to walkthrough my code and give me suggestion to make it shorter and faster? (I have attached the file)
    I made this code based on little knowledge of VBA.

    Secondly is there any relation having a macro running on a large file (>10 MB) with its speed?

    Thanks in advance
    Attached Files Attached Files

  2. #2
    Forum Moderator davesexcel's Avatar
    Join Date
    02-19-2006
    Location
    Regina
    MS-Off Ver
    MS 365
    Posts
    13,524

    Re: Helps to make code faster

    How can we test it? All you did was supply us with the code.

  3. #3
    Forum Guru
    Join Date
    03-12-2010
    Location
    Canada
    MS-Off Ver
    2010 and 2013
    Posts
    4,418

    Re: Helps to make code faster

    A couple of items I see here:

    1) The exception is to use .Select not the norm. Therefore cut down lines like:

    Please Login or Register  to view this content.
    to

    Please Login or Register  to view this content.
    2) Why do you keep recalculating the last row. Like:

    Please Login or Register  to view this content.
    3) Copy and paste in one line:

    Please Login or Register  to view this content.
    can be:

    Please Login or Register  to view this content.
    4) Calculate in memory and only print the results

    5) This isn't going to increase efficiencey but just for your own personal knowledge, unless you are going to be skipping rows then you can lose the "Step 1" in lines like this:

    Please Login or Register  to view this content.
    6) Turn calculations off and turn them on only when they are needed to calculate a worksheet function that will be used later in the code.

    7) As for better coding practices, use:

    Please Login or Register  to view this content.
    instead of:

    [CODE]Range("A1").End(xlDown).Row[/CODE[

    so that blank rows don't throw the code off.

    Hope this helps.

    abousetta
    Please consider:

    Thanking those who helped you. Click the star icon in the lower left part of the contributor's post and add Reputation.
    Cleaning up when you're done. Mark your thread [SOLVED] if you received your answer.

  4. #4
    Forum Guru
    Join Date
    03-12-2010
    Location
    Canada
    MS-Off Ver
    2010 and 2013
    Posts
    4,418

    Re: Helps to make code faster

    Quote Originally Posted by a_driga View Post
    Secondly is there any relation having a macro running on a large file (>10 MB) with its speed?
    10 MB should not be a problem for most systems to handle. I work slighly bigger files and notices that sometimes the speed start to slow down when its closer to 100 MB and using over 2 MB of RAM, but I am using a 64-bit office that allows the use above the 2 MB limit in 32-bit systems and I believe that all Excel 2007 versions were 32-bit. Usually the culprit is poor coding rather than file size and you would be surprised how much faster code runs when it is efficiently optomized.

    Hope this helps.

    abousetta

  5. #5
    Registered User
    Join Date
    08-14-2011
    Location
    Jakarta, Indonesia
    MS-Off Ver
    Excel 2007
    Posts
    63

    Re: Helps to make code faster

    2) Why do you keep recalculating the last row. Like:

    Please Login or Register  to view this content.
    4) Calculate in memory and only print the results

    abousetta[/QUOTE]

    Hi Abou, thanks for the reply
    1. For your point number 2, I keep calculate lr4 because I am adding data to sheet med from two other sheets namely lastyear and thisyear. After that I remove the one having a condition of "pair" and the remove the duplicate. Once this process finished I get the final value for lr4.
    2. For your point number 4, How can I do this? Because my code is doing the calculation and directly inserted in the corresponding cell

    As for your other points, I will revise my code and see the effect.

    What is the syntax to show the time needed to run the code?

    Thanks again.

  6. #6
    Forum Guru
    Join Date
    03-12-2010
    Location
    Canada
    MS-Off Ver
    2010 and 2013
    Posts
    4,418

    Re: Helps to make code faster

    If you don't need a formula in a cell, but just the results of the caluclation then you can use a variable to calculate in memory rather than in a worksheet.

    For example you can put this in a cell (e.g. B1): =A1+A2

    Or you can write:
    Please Login or Register  to view this content.
    Now the calculations of adding A1 and A2 is done only in memory and only the results are printed to the worksheet. For simple calculations you won't see a difference, but for volatile functions or complex functions, it can make a very big difference.

    When you get more advanced you will be able to do do a range of calculations, put the results into an array and then print the array all at once to the worksheet.

    For example, let's say we wanted to calculate the sum of B:Z and put the results in A. As formulas go you can write:

    A1 = B1:Z1
    B1 = B2:Z2
    C1 = B3:Z3
    etc. (up to let's say 10,000 rows)

    But you can also do this in memory and print the results all at once:

    Please Login or Register  to view this content.

  7. #7
    Registered User
    Join Date
    08-14-2011
    Location
    Jakarta, Indonesia
    MS-Off Ver
    Excel 2007
    Posts
    63

    Re: Helps to make code faster

    Hi Abou,

    Sorry for the late reply.
    What if my calculation needs to be done in 2-D array.
    My calculation will be using application.sumifs, where the criteria range is in different sheet.

    I used to have this syntax:
    Please Login or Register  to view this content.

+ 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