I have a similar problem to the post here. I have a form that enters information on patient admissions and discharges. At the bottom of the form is a button that opens a survey so that a staff member can take information from a phone survey. I want the survey to display information from the admission/discharge form in unbound boxes, just to remind the staff member which patient and admission they are working with. The original admission/discharge form stores information into a table using ID numbers from combo boxes. So the combobox displays (from column 2 or 3) the patient movement action (admission, discharge, transfer, etc.), but what is STORED is the ID number of that action.
If I put the following in the form for the survey:
=[Forms]![frmTraineeInfo]![sfrActions]![cboDepartmentID],
It will sucessfully display the ID number from the admission/discharge form, but I cannot get it to display the text instead. I have tried to use the suggestion from the referenced post, to add the column:
=[Forms]![frmTraineeInfo]![sfrActions]![cboDepartmentID].Column(3)
but the system automatically displays
=[Forms]![frmTraineeInfo]![sfrActions]![cboDepartmentID].[Column](3) (column is now bracketed) in the properties box, and will NOT display the text associated with the ID number.
I would appreciate any suggestions. I am sure that I am missing something very simple. Thanks so much for your assistance.
If I put the following in the form for the survey:
=[Forms]![frmTraineeInfo]![sfrActions]![cboDepartmentID],
It will sucessfully display the ID number from the admission/discharge form, but I cannot get it to display the text instead. I have tried to use the suggestion from the referenced post, to add the column:
=[Forms]![frmTraineeInfo]![sfrActions]![cboDepartmentID].Column(3)
but the system automatically displays
=[Forms]![frmTraineeInfo]![sfrActions]![cboDepartmentID].[Column](3) (column is now bracketed) in the properties box, and will NOT display the text associated with the ID number.
I would appreciate any suggestions. I am sure that I am missing something very simple. Thanks so much for your assistance.