G
Guest
Can anyone figure out why this expression would give me sums which include
cases where Co.Revision ="Void" if (and apparently only if) there are other
Change orders which are not void with the same number. That is exactly what
I am trying to avoid, and I don't know what I am missing.
CumChange: (SELECT Sum(AmtChOrder) FROM [tblChgeOrders]
WHERE((Co.[Revision] <> "Void") AND ( [ContrNo] = CO.[ContrNo] )AND
([Change#] <= CO.[Change#] )))
Thanks in advance for any advice you can offer.
cases where Co.Revision ="Void" if (and apparently only if) there are other
Change orders which are not void with the same number. That is exactly what
I am trying to avoid, and I don't know what I am missing.
CumChange: (SELECT Sum(AmtChOrder) FROM [tblChgeOrders]
WHERE((Co.[Revision] <> "Void") AND ( [ContrNo] = CO.[ContrNo] )AND
([Change#] <= CO.[Change#] )))
Thanks in advance for any advice you can offer.