G
Guest
I have the following query:
SELECT tblAMUWork.AMUWrkID, tblAMUWork.DateRcd, tblAMUWork.TypeOfWork,
tblAMUWork.MISNumber, tblAMUWork.RptName, tblAMUWork.AmtRcd,
Nz([CompletedAmt],0)+Nz([CompletedAmt1],0)+Nz([CompletedAmt2],0)+Nz([CompletedAmt3],0)
AS TotalAmtCompleted, Nz([AmtRcd],0)-Nz([TotalAmtCompleted],0) AS Variance,
tblAMUWork.WorkNotCompleted
FROM tblAMUWork;
When I run the query the only records that I want to see are the records
that have a variance. If the number is 0 then I don't want to see it. When
I try to add that criteria I get a data mismatch.
Does anyone have any ideas as to what I am doing wrong?
SELECT tblAMUWork.AMUWrkID, tblAMUWork.DateRcd, tblAMUWork.TypeOfWork,
tblAMUWork.MISNumber, tblAMUWork.RptName, tblAMUWork.AmtRcd,
Nz([CompletedAmt],0)+Nz([CompletedAmt1],0)+Nz([CompletedAmt2],0)+Nz([CompletedAmt3],0)
AS TotalAmtCompleted, Nz([AmtRcd],0)-Nz([TotalAmtCompleted],0) AS Variance,
tblAMUWork.WorkNotCompleted
FROM tblAMUWork;
When I run the query the only records that I want to see are the records
that have a variance. If the number is 0 then I don't want to see it. When
I try to add that criteria I get a data mismatch.
Does anyone have any ideas as to what I am doing wrong?