S
Steve D
I am having all kinds of issues today. I have a query that works fine until I
add one more criteria and then I get a message that the "expression is typed
incorrectly or too complex..." If I take out 'AND
((tblPL.[Category])="Actual")' the query runs fine. Any thoughts?
SELECT qryAssociates_Paid_Chargeback_Pct.Oracle_Tier3,
qryAssociates_Paid_Chargeback_Pct.Region_Name_Tier3,
qryAssociates_Paid_Chargeback_Pct.[Associate Count],
qryAssociates_Paid_Chargeback_Pct.[Chargeback Percent],
Format([Amount]*[Chargeback_Decimal],"Currency") AS [Chargeback Amount],
tblPL.Category
FROM qryAssociates_Paid_Chargeback_Pct LEFT JOIN tblPL ON
qryAssociates_Paid_Chargeback_Pct.Month = tblPL.Month
WHERE (((tblPL.Account)="Chargeback") AND ((tblPL.[Cost Center])="228065")
AND ((tblPL.[Category])="Actual"))
GROUP BY qryAssociates_Paid_Chargeback_Pct.Oracle_Tier3,
qryAssociates_Paid_Chargeback_Pct.Region_Name_Tier3,
qryAssociates_Paid_Chargeback_Pct.[Associate Count],
qryAssociates_Paid_Chargeback_Pct.[Chargeback Percent], tblPL.Amount,
qryAssociates_Paid_Chargeback_Pct.Chargeback_Decimal, tblPL.Category;
add one more criteria and then I get a message that the "expression is typed
incorrectly or too complex..." If I take out 'AND
((tblPL.[Category])="Actual")' the query runs fine. Any thoughts?
SELECT qryAssociates_Paid_Chargeback_Pct.Oracle_Tier3,
qryAssociates_Paid_Chargeback_Pct.Region_Name_Tier3,
qryAssociates_Paid_Chargeback_Pct.[Associate Count],
qryAssociates_Paid_Chargeback_Pct.[Chargeback Percent],
Format([Amount]*[Chargeback_Decimal],"Currency") AS [Chargeback Amount],
tblPL.Category
FROM qryAssociates_Paid_Chargeback_Pct LEFT JOIN tblPL ON
qryAssociates_Paid_Chargeback_Pct.Month = tblPL.Month
WHERE (((tblPL.Account)="Chargeback") AND ((tblPL.[Cost Center])="228065")
AND ((tblPL.[Category])="Actual"))
GROUP BY qryAssociates_Paid_Chargeback_Pct.Oracle_Tier3,
qryAssociates_Paid_Chargeback_Pct.Region_Name_Tier3,
qryAssociates_Paid_Chargeback_Pct.[Associate Count],
qryAssociates_Paid_Chargeback_Pct.[Chargeback Percent], tblPL.Amount,
qryAssociates_Paid_Chargeback_Pct.Chargeback_Decimal, tblPL.Category;