Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there a way to have the spreadsheet screen refresh after the macor is
finished instead of during the macro run? Currently the changes to the spreadsheet are reflected as the macro runs. I would like the user to see just one refresh when the macro is complete. Tom |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sub Whatever()
application.screenupdating = false 'Your code here application.screenupdating = true end sub -- HTH... Jim Thomlinson "stinson" wrote: Is there a way to have the spreadsheet screen refresh after the macor is finished instead of during the macro run? Currently the changes to the spreadsheet are reflected as the macro runs. I would like the user to see just one refresh when the macro is complete. Tom |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
At the start of the macro use the statement
Application.ScreenUpdating=False stinson wrote: Is there a way to have the spreadsheet screen refresh after the macor is finished instead of during the macro run? Currently the changes to the spreadsheet are reflected as the macro runs. I would like the user to see just one refresh when the macro is complete. Tom |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Application.ScreenUpdating = False
at the start, and just before the end Application.ScreenUpdating = True -- kassie never stop learning "stinson" wrote in message ... Is there a way to have the spreadsheet screen refresh after the macor is finished instead of during the macro run? Currently the changes to the spreadsheet are reflected as the macro runs. I would like the user to see just one refresh when the macro is complete. Tom |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thank you.
"Jim Thomlinson" wrote: Sub Whatever() application.screenupdating = false 'Your code here application.screenupdating = true end sub -- HTH... Jim Thomlinson "stinson" wrote: Is there a way to have the spreadsheet screen refresh after the macor is finished instead of during the macro run? Currently the changes to the spreadsheet are reflected as the macro runs. I would like the user to see just one refresh when the macro is complete. Tom |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
thank you
"Alan" wrote: At the start of the macro use the statement Application.ScreenUpdating=False stinson wrote: Is there a way to have the spreadsheet screen refresh after the macor is finished instead of during the macro run? Currently the changes to the spreadsheet are reflected as the macro runs. I would like the user to see just one refresh when the macro is complete. Tom |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
thank you
"Kassie" wrote: Application.ScreenUpdating = False at the start, and just before the end Application.ScreenUpdating = True -- kassie never stop learning "stinson" wrote in message ... Is there a way to have the spreadsheet screen refresh after the macor is finished instead of during the macro run? Currently the changes to the spreadsheet are reflected as the macro runs. I would like the user to see just one refresh when the macro is complete. Tom |
#8
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dim Old_ScrUpdate as Boolean
'Begin get status of Property Application.ScreenUpdating into Old_ScrUpdate Old_ScrUpdate=Application.ScreenUpdating Application.ScreenUpdating = False .....Do It... 'Get old status Application.ScreenUpdating = Old_ScrUpdate It's better! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Screen Refresh | Excel Discussion (Misc queries) | |||
stop screen refresh | Excel Programming | |||
stop screen refresh | Excel Programming | |||
refresh van uw screen commando | Excel Programming | |||
Screen refresh problem. | Excel Programming |