I"m trying to lookup a value in an Employee's table and when a new record is added and put that vaule in my Results table. The value I'm looking up is a Yes/No field called active. I have used Dlookup before and it works. I'm not sure what I need to do different for a yes/No field. Below is the code that dosen't work for me. All I get is the #Name junk..
Me!Active = DLookup("[Active]", "tblEmployees", "[EmployeeID] = " & Me.EmployeeID)
Me!Active = DLookup("[Active]", "tblEmployees", "[EmployeeID] = " & Me.EmployeeID)