When I run this query (entire query not shown here) I get a set of results that differ by only a few count numbers and dollars, than if I filter the database manually.
Does Access look at numbers and dollars differently in a query? Are numbers, etc., rounded up or down.
Are there query controls that I can set within Access 2003?
This is a modified suggestion from Rudy.
Thanks . . . Rick
Does Access look at numbers and dollars differently in a query? Are numbers, etc., rounded up or down.
Are there query controls that I can set within Access 2003?
Code:
,Sum(IIf(S.ListName Like C.OfcName&"*" And S.SellName Not Like C.OfcName&"*",1,0)) AS TSO
,Sum(IIf(S.ListName Like C.OfcName&"*" And S.SellName Not Like C.OfcName&"*",S.SalePrice,0)) AS TSODV
This is a modified suggestion from Rudy.
Thanks . . . Rick