CallMeAndy
Registered User.
- Local time
- Today, 15:06
- Joined
- Jun 21, 2005
- Messages
- 14
Hi folks any help appreciated.
I have a combo box displaying a concatenated trio of fields
representing another individual in the same contact table.
Title & " " & Firstname & " " & LastName
I need to use this value with a DLookup or other solution to get the email address from this other record in order to send a report to ths other person
the criteria for the DLookup I was intending to use is
"[Title] + ' ' + [FirstName] + ' ' + [LastName] = '" & Solicitors_ContactName & "'"
Works great accept in the instance when [Title] is a Null value on the other record, and presumably if either of the name fields were.
So is there a variation I can use as the criteria or is it possible to access columns in the combo box which are not the displayed ones, i.e could I include a hidden column for the email address that is wanted.
I have a combo box displaying a concatenated trio of fields
representing another individual in the same contact table.
Title & " " & Firstname & " " & LastName
I need to use this value with a DLookup or other solution to get the email address from this other record in order to send a report to ths other person
the criteria for the DLookup I was intending to use is
"[Title] + ' ' + [FirstName] + ' ' + [LastName] = '" & Solicitors_ContactName & "'"
Works great accept in the instance when [Title] is a Null value on the other record, and presumably if either of the name fields were.
So is there a variation I can use as the criteria or is it possible to access columns in the combo box which are not the displayed ones, i.e could I include a hidden column for the email address that is wanted.