aborting a sub

  • Thread starter Thread starter solo_razor
  • Start date Start date
S

solo_razor

hi,

does anybody know how i can abort a sub using the if then else
statement?

THX
 
Use exit sub for example
if thisworkbook.readonly then
'do stuff
else
Exit sub
end if

How this is what you need.

regards,

Jon-jon
 

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