public procedures

G

Guest

how can i create a public procedure, which can be used by
different macros in the same workbooks?
thanks
 
F

Frank Kabel

Hi
access within ONE workbook: Just put your procedure in a standard
module of this workbook:
public sub foo()
'...
end sub
 
Top