scope of private function called from UserForm fails

O

oscar.c.marin

I get a "function does not exist" or similar when function defined in Module1
is called from UserForm.

Thanks in advance.
 
J

JMB

Private functions can only be called from code located in the same module.
Remove the private keyword.
 
Top