Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() i want to do using recursive method. but error. Sub f_recursive_ex(k As Long) If k = 10000 Then Exit Sub ActiveCell.Value = k k = k + 1 Call f_recursive_ex(k) End Sub Sub recursi() Call f_recursive_ex(1) End Sub *** Sent via Developersdex http://www.developersdex.com *** Don't just participate in USENET...get rewarded for it! |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there a point to try to use recursion in there instead of a For/Next or a
Do/Loop ? -- Regards Juan Pablo González "tom taol" wrote in message ... i want to do using recursive method. but error. Sub f_recursive_ex(k As Long) If k = 10000 Then Exit Sub ActiveCell.Value = k k = k + 1 Call f_recursive_ex(k) End Sub Sub recursi() Call f_recursive_ex(1) End Sub *** Sent via Developersdex http://www.developersdex.com *** Don't just participate in USENET...get rewarded for it! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Out of Stack Space ... Recorded Macros | Excel Discussion (Misc queries) | |||
Out of Stack Space error | Excel Discussion (Misc queries) | |||
Out of Stack Space error | Excel Programming | |||
Run time error 28: Out of stack space | Excel Programming | |||
Out of Stack Space | Excel Programming |