Function - minimum parameters error

I’ve built a function for a table. It has no local variables, constants, or parameters. It only is set to return a value (boolean). Now i’m building a form (card form for the table) and am trying to call the function, but I’m getting error message about '…minimum number of parameters must be used…". Confused because the function has no parameters (and I’m typing exactly what’s in the Dev2 text!) Thanks in advance

Try to put Rec. in front of the function name when you are calling it from inside the form. You most probably have used a function name which already exists in the form. Another option would be to rename the function. If both does not help tell me what the name of the function is which you created.

Thanks Thomas! The Rec. got it to compile. Now to test!! Thanks again!!