S
shep
I have a table, tblPatientV1, and a table, tblStatusV1.
tblStatusV1 has two fields; ID and Status. Status has Active, Inactive, and
Discharged entered as options.
tblPatientV1 has several fields one of which is Status, a text field.
form, frmPatientV1 is based on tblPatientV1 to enter patient data for
storage in the table. On the form, Status field is a combo box and Row
Source for Status field has:SELECT [tblStatusV1].[ID], [tblStatusV1].[Status]
FROM [tblStatusV1];
When I select a status;e.g., Active, The ID number shows in tblPatientV1
rather than the text Active.
How can I get the text to show in the table?
tblStatusV1 has two fields; ID and Status. Status has Active, Inactive, and
Discharged entered as options.
tblPatientV1 has several fields one of which is Status, a text field.
form, frmPatientV1 is based on tblPatientV1 to enter patient data for
storage in the table. On the form, Status field is a combo box and Row
Source for Status field has:SELECT [tblStatusV1].[ID], [tblStatusV1].[Status]
FROM [tblStatusV1];
When I select a status;e.g., Active, The ID number shows in tblPatientV1
rather than the text Active.
How can I get the text to show in the table?