+ Reply to Thread
Results 1 to 2 of 2

Speed Up This Macro

  1. #1
    Registered User
    Join Date
    04-05-2013
    Location
    Gurnee, IL
    MS-Off Ver
    MS365 (PC) Version 2310
    Posts
    53

    Speed Up This Macro

    The attached spreadsheet is used to assign a job number to a contract. There are 2 macros - FindIt and OpenJobNumberForm. FindIt scans the list to see if the contract # being entered has already been entered. OpenJobNumberForm opens a form to allow the user to enter the date and the contract number. A formula in the spreadsheet assigns the next number in the sequence as the job number.

    The issue is that the OpenJobNumberForm macro scans the entire spreadsheet before assigning a new job number. As the list gets longer, this process takes longer. Is there a way to speed this up (ie eliminate the need to scan the entire spreadsheet)?

    Thanks in advance for any help.
    Attached Files Attached Files

  2. #2
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,957

    Re: Speed Up This Macro

    About all I can offer is instead of
    Please Login or Register  to view this content.
    At the beginning of the module use the following code:
    Please Login or Register  to view this content.
    Then you can replace all the select sheet / activesheet with sh.whatever

    For example, instead of
    Please Login or Register  to view this content.
    You can use
    Please Login or Register  to view this content.
    Likewise, look for opportunities to remove references to the activecell. sh.Cells(RowNumber, ColumnNumber) might help.

    So instead of constantly moving the active cell down or over, use an index
    Please Login or Register  to view this content.
    In general when you see
    Something.Select followed by Selection.DoSomething, you can replace it with Something.DoSomething.

    Don't depend on activesheet or activecell. Your concept of what's active and Excel's concept of what's active may be two different things. Although you seem to take pains to make sure to activate what you want.

    I don't really know how much time it takes excel to activate or select something, but I think it works faster with direct references, and it may be easier to figure out where you are as well instead of doing all those offsets in your head.
    One spreadsheet to rule them all. One spreadsheet to find them. One spreadsheet to bring them all and at corporate, bind them.

    A picture is worth a thousand words, but a sample spreadsheet is more likely to be worked on.

+ 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. Everage Speed km/time (european speed)
    By GerryZucca in forum Excel General
    Replies: 3
    Last Post: 02-23-2015, 03:02 PM
  2. How to speed up this macro?
    By mso3 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 11-17-2014, 08:18 PM
  3. [SOLVED] Are you able to help Speed Up this Macro?
    By Andrew.Trevayne in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 08-26-2012, 03:31 AM
  4. Speed Up Macro
    By jbmerrel in forum Excel General
    Replies: 4
    Last Post: 01-16-2012, 01:40 PM
  5. Speed up macro
    By Jasrenkai in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 07-20-2010, 10:07 AM
  6. [SOLVED] Macro Speed
    By Don Lloyd in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 07-28-2005, 02:06 PM
  7. Speed up macro
    By rn in forum Excel General
    Replies: 4
    Last Post: 02-21-2005, 10:25 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