S
Steve D
I have a field that calculates the percent of the total, I am now trying to
multiply that percent by a value in another field and I keep getting #Error
as the result. The value of X is where I am having issues. I would appreciate
any help. The SQL is below:
SELECT qryAssociates_Paid_Chargeback.Oracle_Tier3,
qryAssociates_Paid_Chargeback.Region_Name_Tier3,
qryAssociates_Paid_Chargeback.[Associate Count],
qryAssociates_Paid_Chargeback.[Chargeback Percent], tblPL.Amount,
[qryAssociates_Paid_Chargeback].[Chargeback Percent]*[tblPL].[Amount] AS X
FROM qryAssociates_Paid_Chargeback INNER JOIN tblPL ON
qryAssociates_Paid_Chargeback.Month = tblPL.Month
WHERE (((tblPL.Account)="Chargeback"))
GROUP BY qryAssociates_Paid_Chargeback.Oracle_Tier3,
qryAssociates_Paid_Chargeback.Region_Name_Tier3,
qryAssociates_Paid_Chargeback.[Associate Count],
qryAssociates_Paid_Chargeback.[Chargeback Percent], tblPL.Amount;
multiply that percent by a value in another field and I keep getting #Error
as the result. The value of X is where I am having issues. I would appreciate
any help. The SQL is below:
SELECT qryAssociates_Paid_Chargeback.Oracle_Tier3,
qryAssociates_Paid_Chargeback.Region_Name_Tier3,
qryAssociates_Paid_Chargeback.[Associate Count],
qryAssociates_Paid_Chargeback.[Chargeback Percent], tblPL.Amount,
[qryAssociates_Paid_Chargeback].[Chargeback Percent]*[tblPL].[Amount] AS X
FROM qryAssociates_Paid_Chargeback INNER JOIN tblPL ON
qryAssociates_Paid_Chargeback.Month = tblPL.Month
WHERE (((tblPL.Account)="Chargeback"))
GROUP BY qryAssociates_Paid_Chargeback.Oracle_Tier3,
qryAssociates_Paid_Chargeback.Region_Name_Tier3,
qryAssociates_Paid_Chargeback.[Associate Count],
qryAssociates_Paid_Chargeback.[Chargeback Percent], tblPL.Amount;