Can someone please help with what I am doing wrong here? I'm not an expert programmer, but do try hard...
SELECT Prdctnentry.WorkOrderNo, Prdctnentry.MachineAmount, GRASSLAND_dbo_PT_CaseLot.LotSize, Prdctnentry.Date
FROM Prdctnentry LEFT JOIN GRASSLAND_dbo_PT_CaseLot ON Prdctnentry.WorkOrderNo = GRASSLAND_dbo_PT_CaseLot.WorkOrderNo
WHERE (((GRASSLAND_dbo_PT_CaseLot.LotSize)<[Prdctnentry].[MachineAmount]) AND ((Prdctnentry.Date)=[Please enter a production date:]));
I get the following error message...
"This expression is typed incorrectly, or it is too complex to be evaluated. For example, a numeric expression may contain too many complicated elements. Try simplifying the expression by assigning parts of the expression to variables."
Thanks for any help!
SELECT Prdctnentry.WorkOrderNo, Prdctnentry.MachineAmount, GRASSLAND_dbo_PT_CaseLot.LotSize, Prdctnentry.Date
FROM Prdctnentry LEFT JOIN GRASSLAND_dbo_PT_CaseLot ON Prdctnentry.WorkOrderNo = GRASSLAND_dbo_PT_CaseLot.WorkOrderNo
WHERE (((GRASSLAND_dbo_PT_CaseLot.LotSize)<[Prdctnentry].[MachineAmount]) AND ((Prdctnentry.Date)=[Please enter a production date:]));
I get the following error message...
"This expression is typed incorrectly, or it is too complex to be evaluated. For example, a numeric expression may contain too many complicated elements. Try simplifying the expression by assigning parts of the expression to variables."
Thanks for any help!