I have 2003 so can not open your accdb file to see what your table layouts are.
Normally you would have tables Location and Sell each with a Primary key.
Location may look like this
Location(id autonumber, Item text, Location text,...other fields specific to Location..)
Sell(id autonumber, Loc_FK number, Salesman text, ..other fields specific to Sell...)
Your tables would be related by a relationship between Location.Id and Sell.Loc_FK which would mean "Locations that has been Sold can be found by
using the FK field in SELL to find records in Location.
revised query using my tables
Code:
SELECT Location.id, Location.item, Location.Location, IIf(IsNull([sell_FK]),"NO",[Sell_FK]) AS MyDisplayValue
FROM Location LEFT JOIN Sell ON Location.id = Sell.sell_Fk
WHERE sell.sell_fk is null;
The attached jpg shows the table values and the result of the revised query.