Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am examining thousands or rows with my VBA. It is taking a long time. I
think most of it is visual processing. The processing is: examine a cell, if applicable, copy that row to another sheet; repeat 5000 times. I placed "Application.WindowState = xlMinimized" at the beginning, but Excel does not minimize. Any help? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
As always, post your code. You are probably using a lot of unnecessary
selections when a loop would do for i= 1 to 10000 if cells(i,1)="joe" then next i -- Don Guillett SalesAid Software "Chas" wrote in message . .. I am examining thousands or rows with my VBA. It is taking a long time. I think most of it is visual processing. The processing is: examine a cell, if applicable, copy that row to another sheet; repeat 5000 times. I placed "Application.WindowState = xlMinimized" at the beginning, but Excel does not minimize. Any help? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try this to suppress the screen updating (and speed up your code).
Application.screenupdateing = false 'Your code application.screenupdating = true -- HTH... Jim Thomlinson "Chas" wrote: I am examining thousands or rows with my VBA. It is taking a long time. I think most of it is visual processing. The processing is: examine a cell, if applicable, copy that row to another sheet; repeat 5000 times. I placed "Application.WindowState = xlMinimized" at the beginning, but Excel does not minimize. Any help? |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks
"Jim Thomlinson" wrote in message ... Try this to suppress the screen updating (and speed up your code). Application.screenupdateing = false 'Your code application.screenupdating = true -- HTH... Jim Thomlinson "Chas" wrote: I am examining thousands or rows with my VBA. It is taking a long time. I think most of it is visual processing. The processing is: examine a cell, if applicable, copy that row to another sheet; repeat 5000 times. I placed "Application.WindowState = xlMinimized" at the beginning, but Excel does not minimize. Any help? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Can you speed UP drag speed? | Excel Discussion (Misc queries) | |||
how do i minimize/maximize a workbook from vba? I want to minimize it durring processing to speed things up a bit | Excel Worksheet Functions | |||
Free Tool (Add-in) To Speed Up Your Data Processing | Excel Worksheet Functions | |||
Data Processing | Excel Programming | |||
Data Processing | Excel Programming |