If this line of a query comes across a null in the field S.SellName I still need the query to count that null value.
Can I use something like this in the WHERE clause?
If IsNull S.ListName OR S.SellName Then Null=""
I'm guessing here.
Thanks . . . Rick
Code:
,Sum(IIf(S.ListName Like C.OfcName&"*" And S.SellName Not Like C.OfcName&"*",1,0)) AS TSO
Can I use something like this in the WHERE clause?
If IsNull S.ListName OR S.SellName Then Null=""
I'm guessing here.
Thanks . . . Rick