Dlookup

  • Thread starter Thread starter Docgreen
  • Start date Start date
D

Docgreen

Help with Dlookup

I have two tables: one contains a table of clients credit card information
called Credit Cards. The other is a table of daily credit card transactions,
called Transactions. I have a form based on the transactions table which has
a list box based on the Credit Cards table displaying Last Name, First Name
and ID not displayed. The list box is called Selectcc. I have a button on the
form which triggers a macro. The idea is that the user selects the client
from the list, clicks on the button and the fields on the form are filled by
the macro.

I am using SelectValue for each field ( are only a few). The Item :
[Forms]![Transactions]![Last Name] and the expression : Dlookup(“[Credit
Cards]![Last Name]â€,â€[Credit
Cards]â€,â€[Forms]![Transactions]![Selectcc]â€=â€[Credit Cards]!{ID]â€)

The expression does not return the field. Any help would be appreciated.
 
Syntax is wrong:

Dlookup("Last Name","Credit Cards","ID = " &
[Forms]![Transactions]![Selectcc])
 
Back
Top