Hi

The macro below is apparently recursive and can cause
a computer to run out of memory. But how do you run
it as it doesn't seem to execute from VBA Editor and the macro doesn't
appear in VBA explorer.

Does a function have to be called from another sub or something?

Thanks

_____________________________________

Function

RunOut(Maximum)
RunOut = RunOut(Maximum)

End Function

_______________________________