Run code until.....

A

AndyEduardo

Hello.

I need to know how to run code until a specific line, something lik
call a sub from other sub. For example inside (yyyy)'s code I use Cal
(xxxx) , but I don't want (xxxx) run complete, how can I establish som
mark or .....I don't know.

Thanks for your hel
 
R

RoyVidar

AndyEduardo wrote in message
Hello.

I need to know how to run code until a specific line, something like
call a sub from other sub. For example inside (yyyy)'s code I use Call
(xxxx) , but I don't want (xxxx) run complete, how can I establish some
mark or .....I don't know.

Thanks for your help

If you're talking for debugging purposes, set a breakpoint (F9), or use
the stop statement.
 
Top