Hi All
I hope that someone can help me. I am trying to do something that I am sure is really simple but I am new to Access and I just cant figure it out.
I want to build an email address out of 2 fields in my table but one of the fields is a lookup from another table so when I try to join the fields in either the expression builder or a macro I just get the ID value. for example ******@abc.com instead of ******@abc.com.
my table as as follows:
Users
| UserID (AutoNumber) |
FirstName (Text) |
LastName (Tex) |
Department (Number) (Lookup) |
Email (Calculation) |
| 1 |
Jo |
Bloggs |
Sales |
|
Departments
| DepartmentID (AutoNumber) |
DepartmentName |
| 1 |
Sales |
The expression I have been using the calculation field is [FirstName] & "." & [Department] & "@abc.com"
If anyone can point me in the right direction that would be great.
Thank you in advance.