R
Rich
I have the following query that returns instances where a mfg job has
had a $0 subcontract event posted to it's Bills screen (usually a
subcontractor rework, but sometimes a mistake) :
SELECT tblBuyout.[BU_Job Num], tblBuyout.Type, tblBuyout.Cost
tblBuyout.[Line Num], tblBuyout.Desc
FROM tblBuyout
WHERE tblBuyout.Type="S" AND tblBuyout.Cost=0
Or tblBuyout.Cost Is Null;
I could validate most of these returns as legitimate, if I could also
see the same data for the [Line Num] immediately after the $0 event
line , but am unsure how to query this. Thanks in advance for any
help you can give me
had a $0 subcontract event posted to it's Bills screen (usually a
subcontractor rework, but sometimes a mistake) :
SELECT tblBuyout.[BU_Job Num], tblBuyout.Type, tblBuyout.Cost
tblBuyout.[Line Num], tblBuyout.Desc
FROM tblBuyout
WHERE tblBuyout.Type="S" AND tblBuyout.Cost=0
Or tblBuyout.Cost Is Null;
I could validate most of these returns as legitimate, if I could also
see the same data for the [Line Num] immediately after the $0 event
line , but am unsure how to query this. Thanks in advance for any
help you can give me