I have the following query that works:
SELECT tblCATAx.*, YesLwrCs([SDTE]) AS YLC
FROM tblCATAx
WHERE (((YesLwrCs([SDTE]))=False))
ORDER BY tblCATAx.GTYP, tblCATAx.CATE, tblCATAx.SDTE;
This MDB has a public function called YesLwrCs that is a boolean funtion to determine if a string passed to it has any lower case characters and passes a True value if it finds any lower case characters.
When I try calling this query from another MDB, I get an "Undefined Function" error. If I copy the function to the MDB where the query had the error, the error goes away and the query runs. But for maintenance reasons, I would like the query to be stand alone without copying modules hither and yon.
Does anyone know the syntax to include the path to make this query run?
Thank you in advance for your time and response.
SELECT tblCATAx.*, YesLwrCs([SDTE]) AS YLC
FROM tblCATAx
WHERE (((YesLwrCs([SDTE]))=False))
ORDER BY tblCATAx.GTYP, tblCATAx.CATE, tblCATAx.SDTE;
This MDB has a public function called YesLwrCs that is a boolean funtion to determine if a string passed to it has any lower case characters and passes a True value if it finds any lower case characters.
When I try calling this query from another MDB, I get an "Undefined Function" error. If I copy the function to the MDB where the query had the error, the error goes away and the query runs. But for maintenance reasons, I would like the query to be stand alone without copying modules hither and yon.
Does anyone know the syntax to include the path to make this query run?
Thank you in advance for your time and response.