I'm still not getting this dlookup function to work in my favour. Simple query, i have a master parts list, i have an equipment list. Equipment list has OEM # [Engine Oil Filter #1] with each unit [Tag #], the master parts list [MasterPrts] is my physical inventory each part has bin locations.
this is what i've used:
SELECT Equip1.[Tag #], Equip1.[Engine Oil Filter #1], DLookUp([Engine Oil Filter #1],[MasterPrts]) AS Expr1
FROM Equip1;
I know i'm missing the criteria part and maybe something else.
all i want to do is to have the [Engine Oil Filter #1] in Equip1.[Tag #] find it's "location" in [MasterPrts].
thanks in advance for any help.