Function Microsoft Cannot Find

  • Thread starter Thread starter Mark
  • Start date Start date
M

Mark

I am calling an Access Module with a function name
(weekend_package) and in the function it is in fact called
weekend_package Yet Access continues to tell me that
"The expression you entered has a function name that
microsoft cannot find
 
Mark said:
I am calling an Access Module with a function name
(weekend_package) and in the function it is in fact called
weekend_package Yet Access continues to tell me that
"The expression you entered has a function name that
microsoft cannot find

Is it a Public function in a standard module, or are you calling it from
within the module in which is defined? Note that the name of the module
containing the function must not be the same as the name of the
function, and it's the function's name you must use.

Where are you calling the function from?
 
Back
Top