Hi,
I have an Employees Form, with fields including:
1) EmployeeNumber
2) FirstName
3) Notes
I am learning the DLOOKUP function and am trying to retrieve the FirstName within the Notes field.
There are 10 records within the Form:
1) EmpoyeeNumber = 27495 FirstName = Justine
2) EmployeeNumber = 28404 FirstName = Raymond
And within the Controlsource of the Notes field I have used
=DLookUp("FirstName","Employees","EmployeeNumber = [EmployeeNumber] ")
For 1) Notes = Justine which is correct BUT
2) Notes = Justine which is incorrect as this should retrieve Raymond
Thank you for your assistance