J
JimS
I have a query that works just fine on my computer where I have A97 installed
along with A2007. They don't like each other, and they don't play well, but
my client needs A97, so I use it. The query fails when I transfer the .mdb
over to their network and run it. Approximate message is: "Function not
available in query...."
Here's the query straight from the SQL view of the query:
SELECT CStr([contract #]) AS ContractNbr, Left(CStr([contract #]),8) AS
Job_Nbr, Right(CStr([contract #]),3) AS VendorNbr, IIf([sub/po?]="PO",2,1) AS
Contract_Type, IIf([Per T & C of another contract?]="Y",False,True) AS
Contract_Referencable, [SubPO log].*
FROM [SubPO log]
WHERE (((Len([contract #]))=12));
The function it rejects is "Left(CStr([contract #]),8) AS Job_Nbr". I
removed the CStr() part of the phrase {CStr is redundant since it's already a
string...}, and got the same result. I changed left() to Left$(). No Joy. I
have to believe it has something with my client's use of the "#" sign, but
this works fine on my machine, and fails on theirs...
My machine is running A97 SR-2, their machines run SR-1. Anybody know how to
get SR-2's update?
along with A2007. They don't like each other, and they don't play well, but
my client needs A97, so I use it. The query fails when I transfer the .mdb
over to their network and run it. Approximate message is: "Function not
available in query...."
Here's the query straight from the SQL view of the query:
SELECT CStr([contract #]) AS ContractNbr, Left(CStr([contract #]),8) AS
Job_Nbr, Right(CStr([contract #]),3) AS VendorNbr, IIf([sub/po?]="PO",2,1) AS
Contract_Type, IIf([Per T & C of another contract?]="Y",False,True) AS
Contract_Referencable, [SubPO log].*
FROM [SubPO log]
WHERE (((Len([contract #]))=12));
The function it rejects is "Left(CStr([contract #]),8) AS Job_Nbr". I
removed the CStr() part of the phrase {CStr is redundant since it's already a
string...}, and got the same result. I changed left() to Left$(). No Joy. I
have to believe it has something with my client's use of the "#" sign, but
this works fine on my machine, and fails on theirs...
My machine is running A97 SR-2, their machines run SR-1. Anybody know how to
get SR-2's update?