G Guest May 14, 2004 #1 how can i create a public procedure, which can be used by different macros in the same workbooks? thanks
how can i create a public procedure, which can be used by different macros in the same workbooks? thanks
F Frank Kabel May 14, 2004 #2 Hi access within ONE workbook: Just put your procedure in a standard module of this workbook: public sub foo() '... end sub
Hi access within ONE workbook: Just put your procedure in a standard module of this workbook: public sub foo() '... end sub