Trying to run a function

  • Thread starter Thread starter Timo
  • Start date Start date
T

Timo

Greetings,

I have made a database design with one field that points
to a function in a module (these fields are dynamical). I
want to run this function though I only have the name in
a variable. Is there a way to run this function?

Thanx already
 
Where are you trying to run this function? You can't run it in a table, it
will need to be in a query, form, or report. You should be able to call the
function just as you would a built-in function.

Example of a control source for a textbox:
=MyFunction(parameter1, parameter2)
 
Back
Top