P
palo
I have a workbook with too many rows and columns of data. My macro run very
slowly. Can I use multithread in VBA? Thanks
slowly. Can I use multithread in VBA? Thanks
palo;127305 said:I have a workbook with too many rows and columns of data. My macro ru
very
slowly. Can I use multithread in VBA? Thanks
palo said:Thank you very much. I want to get the information of multithread in VBA.
Can
I do this with VB6?
Joel said:There are ways of speeding up the code. Post code if possible
Some tricks are to turn off screen up[dating and turn off events
Application.ScreenUpdating = False
Application.EnableEvents = False
If yu are deleting rows delete all the rows in one instruction rather
than
one line at a time. I usually mark the rows I want to delete and then
use
the mark to sort the rows I want to delete so the are all adjacent.
There
are other tricks but without seeing the code I can't determine what is
slowing down your code.
palo said:Thank you very much. I want to get the information of multithread in VBA.
Can
I do this with VB6?
Joel said:There are ways of speeding up the code. Post code if possible
Some tricks are to turn off screen up[dating and turn off events
Application.ScreenUpdating = False
Application.EnableEvents = False
If yu are deleting rows delete all the rows in one instruction rather
than
one line at a time. I usually mark the rows I want to delete and then
use
the mark to sort the rows I want to delete so the are all adjacent.
There
are other tricks but without seeing the code I can't determine what is
slowing down your code.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.