Thread
:
"Out of Stack Space" Macro Error
View Single Post
#
4
Posted to microsoft.public.excel.misc
Stephen Bye
external usenet poster
Posts: 28
"Out of Stack Space" Macro Error
Because your routine is calling itself recursively.
Try:
Sub Calculate()
Application.Calculate
End Sub
or:
Sub MyCalculate()
Calculate
End Sub
instead.
Reply With Quote
Stephen Bye
View Public Profile
Find all posts by Stephen Bye