calling a function

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
 
C

Chip Pearson

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
 
F

Frank Kabel

Hi
not quite sure what your issue is but the following should
work:
sub foo()
'do something
complete
end sub
 
Top