I am struggling to make a (SELECT Count([Trucks]) FROM [tblTrucks]). What I need to do is count every truck in tbltrucks except
trucks containing the number 769... (this is in a query)
what I have is this, but it counts all trucks...
CODE
Available Trucks: (SELECT Count([Trucks]) FROM [tblTrucks])
and then I have this, but this only counts the trucks with 777 and there are different trucks in there that need to counted as well:
CODE
Available Trucks: (SELECT Count([Trucks]) FROM [tblTrucks] where [trucks] like "*777*")
what i need is a statement that counts everything except 769 trucks :-)
Thanking you in advance for your help,
Bongazi
