Hello,
I am trying to sum all of the sheets cut on a date which is picked on a form.
Form:
Query
SQL:
SELECT JobInfoT.JobID, JobInfoT.CarcassCut_Due, JobInfoT.CarcassCut_Date, JobInfoT.CC_Sheets
FROM JobTypesT INNER JOIN JobInfoT ON JobTypesT.JobTypeID = JobInfoT.JobTypeID
WHERE (((JobInfoT.CarcassCut_Date)=[Forms]![ManufSubF]![TxtDateFilter]));
And the Field where it should be adding them all up: (CC_Cut on the form)
=Nz(DSum("CC_Sheets","CC_SheetsCutQ","[CarcassCut_Date] = [TxtDateFilter]"))
Thanks
I am trying to sum all of the sheets cut on a date which is picked on a form.
Form:
Query
SQL:
SELECT JobInfoT.JobID, JobInfoT.CarcassCut_Due, JobInfoT.CarcassCut_Date, JobInfoT.CC_Sheets
FROM JobTypesT INNER JOIN JobInfoT ON JobTypesT.JobTypeID = JobInfoT.JobTypeID
WHERE (((JobInfoT.CarcassCut_Date)=[Forms]![ManufSubF]![TxtDateFilter]));
And the Field where it should be adding them all up: (CC_Cut on the form)
=Nz(DSum("CC_Sheets","CC_SheetsCutQ","[CarcassCut_Date] = [TxtDateFilter]"))
Thanks
