|
-
Mar 24th, 2005, 10:43 AM
#1
Thread Starter
New Member
Background processing???
Hi, I have a script in Excel that goes from one worksheet to another, finds data, and then comes back to the original worksheet and populates text boxes with the data found in the second one. So when I click on a valid cell in the first sheet, the second sheet quickly pops up, then I see the program quickly scroll through all the data in column A until it finds a match, and then it goes over to find the data, all before going back to the original sheet. Does anyone know if there is a way to have the whole process run without the user seeing all of the steps flash before them? Is there some kind of background processing code that I can add to my script?
Thanks a ton!
Last edited by spennyd; Mar 24th, 2005 at 11:38 AM.
Reason: Question answered
-
Mar 24th, 2005, 11:23 AM
#2
Addicted Member
Re: Background processing???
add the following to the start of the section of code:
Code:
Application.ScreenUpdating = False
you could also add:
Code:
Application.DisplayAlerts = False
if you fail to plan, you plan to fail
-
Mar 24th, 2005, 11:36 AM
#3
Thread Starter
New Member
Re: Background processing???
Thanks Brian, that worked like a charm!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|