L
Leslie Coover
Note the following Query Field names associated with functions:
IDX_:IDX([ID])
Function IDX(ID As String)
IDX = ID
End Function
DD_
D([Date_Bought])
Function DD(Date_Bought As Date)
DD = Date_Bought
End Function
IDX_:IDX([ID]) works as expected
but
DD_
D([Date_Bought])
returns the error message:
"The expression you entered has a function containing the wrong number of
arguments"
When functions involve date variables do we do something extra?
Thanks!!
IDX_:IDX([ID])
Function IDX(ID As String)
IDX = ID
End Function
DD_

Function DD(Date_Bought As Date)
DD = Date_Bought
End Function
IDX_:IDX([ID]) works as expected
but
DD_

returns the error message:
"The expression you entered has a function containing the wrong number of
arguments"
When functions involve date variables do we do something extra?
Thanks!!