calling a function

  • Thread starter Thread starter praptisahni
  • Start date Start date
P

praptisahni

a simple question,
i have a macro 'Complete' which i need to call several times from othe
Macros, how exactly is this done
 
You can call a macro by simply placing its name in the
appropriate place. E.g.,

Sub AAA()
' some code
Complete
' more code
End Sub


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 
Hi
not quite sure what your issue is but the following should
work:
sub foo()
'do something
complete
end sub
 

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