Hi Guys,
I'm creating a new table, which will eventually be used for the form.
Here the fields:
AirBill_Nbr (PK)
Date Received at MSD
Department Date Received
CustNbr
CustName
To eliminate data entry errors I've made the last two fields as combo boxes:
CustNbr Row Source:
CustName Row Source:
Trying to figure out is it possible somehow to set this property or any related control type that will populate the CustName field automatically according to the CustNbr field value?
Thank you in advance,
Valeriya
I'm creating a new table, which will eventually be used for the form.
Here the fields:
AirBill_Nbr (PK)
Date Received at MSD
Department Date Received
CustNbr
CustName
To eliminate data entry errors I've made the last two fields as combo boxes:
CustNbr Row Source:
Code:
SELECT [Q FedExLog_CusNbr_CustName].CustNbr FROM [Q FedExLog_CusNbr_CustName];
CustName Row Source:
Code:
SELECT [Q FedExLog_CusNbr_CustName].CustName FROM [Q FedExLog_CusNbr_CustName];
Trying to figure out is it possible somehow to set this property or any related control type that will populate the CustName field automatically according to the CustNbr field value?
Thank you in advance,
Valeriya