Home |
Search |
Today's Posts |
#9
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there a workaround to allow GetVals to complete
You can try putting this at the start: With Application .Calculation = xlCalculationManual .ScreenUpdating = False .DisplayAlerts = False End With and this at the end: With Application .Calculation = xlCalculationAutomatic .ScreenUpdating = True .DisplayAlerts = True End With HTH, Merjet |