The main purpose is the prompt the user with an input box, they enter a value and I pass that value to a query parameter. I have done programs in the past that worked, but I had to create 2 functions, the first to accept the value and pass it to the second. The second was then used as the parameter. It seems I should only need 1 function to get a value and pass it. Am I doing something wrong?
Public Function pass_parameter(test as double) as double
pass_parameter = test
End Function
In the query under the field I have pass_parameter()
I get this error:
"Wrong number of arguements used with function in query expression."
Public Function pass_parameter(test as double) as double
pass_parameter = test
End Function
In the query under the field I have pass_parameter()
I get this error:
"Wrong number of arguements used with function in query expression."