R
Rashar S via AccessMonster.com
Hi.
I have a table called tblCustomer and a table called tblSales. My table
customer has a Cust_Contact column that has some blanks in it. My tblSales
table has an Owner, Service_Contact and a Sales_Contact columns.
What I want to do is have my query look at the tblCustomer table, and if
there are any blanks, assign either the Owner, Service_Contact or
Sales_Contact to the tblCustomer.Cust_Contact column.
Here is what I have thus far:
Contacts: IIf([tblCustomer].[Cust_Contact]=" ",[tblSales].[Owner] or
[tblSales].[Service_Contact] or [tblSales].[Sales_Contact],[tblCustomer].
[Cust_Contact])
Thanks in advance,
Rashar
I have a table called tblCustomer and a table called tblSales. My table
customer has a Cust_Contact column that has some blanks in it. My tblSales
table has an Owner, Service_Contact and a Sales_Contact columns.
What I want to do is have my query look at the tblCustomer table, and if
there are any blanks, assign either the Owner, Service_Contact or
Sales_Contact to the tblCustomer.Cust_Contact column.
Here is what I have thus far:
Contacts: IIf([tblCustomer].[Cust_Contact]=" ",[tblSales].[Owner] or
[tblSales].[Service_Contact] or [tblSales].[Sales_Contact],[tblCustomer].
[Cust_Contact])
Thanks in advance,
Rashar