stack space deficiency

  • Thread starter Thread starter tom taol
  • Start date Start date
T

tom taol

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
 
Is there a point to try to use recursion in there instead of a For/Next or a
Do/Loop ?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top