L
Lila
I have a table that is a list of contacts.
Info_FirstName
Info_LastName
Info_NewOwner
Info_SaleDate
I need to create a query that shows the name and the sale date. The name
needs to show Info_FirstName, Info_LastName if the Info_SaleDate is before
10/31/2003 and the Info_NewOwner if Info_SaleDate is after 10/31/2003.
I created a query and in the Field I wrote
Owner: IIf(Between Date(10/31/2003) And ( ) [Info_SaleDate]),
[Info_NewOwner], ([Info_FirstName] & " " & [Info_LastName]))
But I get an error The expression you entered contains invalid syntax. I've
tried about a dozen different ways, but I still get the same message, what
am I doing wrong?
Info_FirstName
Info_LastName
Info_NewOwner
Info_SaleDate
I need to create a query that shows the name and the sale date. The name
needs to show Info_FirstName, Info_LastName if the Info_SaleDate is before
10/31/2003 and the Info_NewOwner if Info_SaleDate is after 10/31/2003.
I created a query and in the Field I wrote
Owner: IIf(Between Date(10/31/2003) And ( ) [Info_SaleDate]),
[Info_NewOwner], ([Info_FirstName] & " " & [Info_LastName]))
But I get an error The expression you entered contains invalid syntax. I've
tried about a dozen different ways, but I still get the same message, what
am I doing wrong?