+ Reply to Thread
Results 1 to 4 of 4

System is really really slow during data entry...VBA problem?

Hybrid View

  1. #1
    Valued Forum Contributor
    Join Date
    10-21-2011
    Location
    Canada
    MS-Off Ver
    Excel 2010
    Posts
    513

    System is really really slow during data entry...VBA problem?

    Hi there,

    I have a test application up and running. The main problem is......during data entry, the system is responding really really slow. At the lower right hand corner, it is actually telling me which processors are running(4 of them), and % of completion....

    The sheet I've been working on is "VGH Clinic Intake"

    Perhaps it is the VBA code I have written? In some other worksheets, thare are embedded calculations as well, which involve another workbook. Could this be the reason???

    could anybody help troubleshoot?

    Much appreciated.

    thank you
    Attached Files Attached Files

  2. #2
    Forum Expert dangelor's Avatar
    Join Date
    09-06-2011
    Location
    Indiana, USA
    MS-Off Ver
    365 Pro Plus
    Posts
    2,275

    Re: System is really really slow during data entry...VBA problem?

    You're limiting the cells using selection change events. Instead, try using sheet protection or the Scroll Area property.

  3. #3
    Valued Forum Contributor
    Join Date
    10-21-2011
    Location
    Canada
    MS-Off Ver
    Excel 2010
    Posts
    513

    Re: System is really really slow during data entry...VBA problem?

    Hi,

    Could you point me in the right direction? I'm not sure how to do so. Did you mean worksheet change event? Yes, everything is in worksheet change event.

    When you protect the sheet, will the calculation update as well?

    what is the scroll area property?

    sorry...I'm new..

  4. #4
    Forum Expert dangelor's Avatar
    Join Date
    09-06-2011
    Location
    Indiana, USA
    MS-Off Ver
    365 Pro Plus
    Posts
    2,275

    Re: System is really really slow during data entry...VBA problem?

    Quote Originally Posted by Lifeseeker View Post
    When you protect the sheet, will the calculation update as well?
    No reason it wouldn't. You would unlock all the cells that you would wish the user to access and then apply the worksheet protection, locking out all other cells by default.

    Quote Originally Posted by Lifeseeker View Post
    what is the scroll area property?

    sorry...I'm new..
    From Excel VBA help...
    ScrollArea Property
    See AlsoApplies ToExampleSpecificsReturns or sets the range where scrolling is allowed, as an A1-style range reference. Cells outside the scroll area cannot be selected. Read/write String.

    Remarks
    Set this property to the empty string ("") to enable cell selection for the entire sheet.

    Example
    This example sets the scroll area for worksheet one.

    Worksheets(1).ScrollArea = "a1:f10"

+ 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