I am not a noobie, but feel like one asking this question.....

If I call a function in a sub, does the function need to complete before it finishes the sub? I want to call a function, but not wait for the function to finish before finishing the sub. The function does not return any values.

Sub Isitdoneyet

call function doit

<-- I want the next lines to finish without waiting for the function doit to finish -->

do more things..

end sub

Thanks,
Bebandit