Hi,
I am sure you heard of this error before. I did a search but I could not come up with a solution.
When I run this query on my pc it's fine, but when I try to run it on somebody else pc I get this error:
Run time error '3085'
undefined function 'Left in expression'
I checked for any missing references in the pc but found none. The only difference I found is this reference for me read: Microsoft access 11.0 Object library
and for the other pc: Microsoft access 9.0 Object library
Could that be the problem?
INSERT INTO tblAssetsParticipantCombined ( PlanID, [Plan Name], [Part# Count], [Computed asset balance], PP )
SELECT Min(tblPlanAssests.[Plan ID]) AS PlanID, Min(tblNumberOfParticipants.[Plan Name]) AS [MinOfPlan Name], Sum(tblNumberOfParticipants.[Part# Count]) AS [SumOfPart# Count], Sum(tblPlanAssests.[Balance Amount]) AS [Computed asset balance], Left(tblPlanAssests![Plan ID],2) AS Form
FROM tblPlanAssests INNER JOIN tblNumberOfParticipants ON tblPlanAssests.[Plan ID] = tblNumberOfParticipants.[Plan ID]
GROUP BY Left(tblPlanAssests![Plan ID],2)
HAVING (((Min(tblPlanAssests.[Plan ID]))="GLC" Or (Min(tblPlanAssests.[Plan ID]))="GLCB" Or (Min(tblPlanAssests.[Plan ID]))="GLNQ") AND ((Sum(tblPlanAssests.[Balance Amount])) Is Not Null))
ORDER BY Min(tblNumberOfParticipants.[Plan Name]);
thanks in advance
I am sure you heard of this error before. I did a search but I could not come up with a solution.
When I run this query on my pc it's fine, but when I try to run it on somebody else pc I get this error:
Run time error '3085'
undefined function 'Left in expression'
I checked for any missing references in the pc but found none. The only difference I found is this reference for me read: Microsoft access 11.0 Object library
and for the other pc: Microsoft access 9.0 Object library
Could that be the problem?
INSERT INTO tblAssetsParticipantCombined ( PlanID, [Plan Name], [Part# Count], [Computed asset balance], PP )
SELECT Min(tblPlanAssests.[Plan ID]) AS PlanID, Min(tblNumberOfParticipants.[Plan Name]) AS [MinOfPlan Name], Sum(tblNumberOfParticipants.[Part# Count]) AS [SumOfPart# Count], Sum(tblPlanAssests.[Balance Amount]) AS [Computed asset balance], Left(tblPlanAssests![Plan ID],2) AS Form
FROM tblPlanAssests INNER JOIN tblNumberOfParticipants ON tblPlanAssests.[Plan ID] = tblNumberOfParticipants.[Plan ID]
GROUP BY Left(tblPlanAssests![Plan ID],2)
HAVING (((Min(tblPlanAssests.[Plan ID]))="GLC" Or (Min(tblPlanAssests.[Plan ID]))="GLCB" Or (Min(tblPlanAssests.[Plan ID]))="GLNQ") AND ((Sum(tblPlanAssests.[Balance Amount])) Is Not Null))
ORDER BY Min(tblNumberOfParticipants.[Plan Name]);
thanks in advance