I have a form with a text box. The control source of this text box is fkPaymentMethod.
fkPaymentMethod is a number stored in table tblPaymentDetails.
fkPaymentMethod is actually a foreign key from another table called tblPaymentMethod.
Fields of tblPaymentMethod are:
Autonumber Text
----------- -----
PrimaryKey PaymentMethod
It's data contains:
1 Cash
2 Cheque
3 Automated Bank Transfer
I want my text box on my form (with control source as fkPaymentMethod) to display as "Cash", "Cheque" and so on, instead of "1", "2" and so on.
Does anyone know how I can do this? Thanks.