Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() I have a sheet with some macro - all working fine. BUT... As soon that I use (even once) the autofilter then all the macro especially the ones that change things on the screen work very very slowly, even when I remove the filter it stays like that, until I reopen the sheet. Application.screenupdating = false/true did not solve the problem - just postponed it. Any idea? Thanks Dan |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
try putting the calculation on manual before executing the macro
With Application ..Calculation = xlManual End With then back on automatic With Application .Calculation = xlAutomatic End With -- caroline "Dan" wrote: I have a sheet with some macro - all working fine. BUT... As soon that I use (even once) the autofilter then all the macro especially the ones that change things on the screen work very very slowly, even when I remove the filter it stays like that, until I reopen the sheet. Application.screenupdating = false/true did not solve the problem - just postponed it. Any idea? Thanks Dan |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks, but it is still very slow. The only way around I could find so far is
to remove the filter. Dan "caroline" wrote: try putting the calculation on manual before executing the macro With Application .Calculation = xlManual End With then back on automatic With Application .Calculation = xlAutomatic End With -- caroline "Dan" wrote: I have a sheet with some macro - all working fine. BUT... As soon that I use (even once) the autofilter then all the macro especially the ones that change things on the screen work very very slowly, even when I remove the filter it stays like that, until I reopen the sheet. Application.screenupdating = false/true did not solve the problem - just postponed it. Any idea? Thanks Dan |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Strange if(***) behaviour? | Excel Discussion (Misc queries) | |||
Strange VBA Behaviour | Excel Programming | |||
Strange behaviour | Excel Worksheet Functions | |||
Strange behaviour in VBA Help | Excel Programming | |||
strange behaviour | Excel Programming |