Is there any reason I shouldn't do the following?
I have the feeling that it's a bad idea, but I can't think why...
(please move if this is better suited for -> VBA?)
ie.
function A (param 1, param 2, param 3...)
errorhandler
if error due to bad param
update param
resume A(param 1, param 2, param 3)
end function
I have the feeling that it's a bad idea, but I can't think why...
(please move if this is better suited for -> VBA?)
ie.
function A (param 1, param 2, param 3...)
errorhandler
if error due to bad param
update param
resume A(param 1, param 2, param 3)
end function