MissaLissa
New Member
- Joined
- Jul 2, 2013
- Messages
- 26
Greetings Experts
I have a subform that contains a combo box for "Reason Category". The Reason Category table contains Category ID (Primary Key) and Reason Category.
<tbody>
[TH="bgcolor: #C0C0C0"] Category ID
[/TH]
[TH="bgcolor: #C0C0C0"] Reason Category
[/TH]
</tbody>
I have another combo box for "Reason" which displays items based on what was chosen in the Reason Category field. The Reason table contains the Primary Key number from the Reason Category table. (small sample below)
<tbody>
[TH="bgcolor: #C0C0C0"] Category Number
[/TH]
[TH="bgcolor: #C0C0C0"] Reason
[/TH]
</tbody>
These are set up so that categories chosen are passed through to a master table. The data passed through is the description not the primary key. However, when creating a select query which creates a new field with the Reason Category and the Reason fields concatenated, the results are as: 3 - Unsatisfactory Settlements. I need it to be displayed as: Claims - Unsatisfactory Settlements
Can someone please help me solve this issue?
I have a subform that contains a combo box for "Reason Category". The Reason Category table contains Category ID (Primary Key) and Reason Category.
0 | N/A |
1 | Underwriting |
2 | Marketing & Sales |
3 | Claims |
4 | Policyholder Services |
5 | Miscellaneous |
<tbody>
[TH="bgcolor: #C0C0C0"] Category ID
[/TH]
[TH="bgcolor: #C0C0C0"] Reason Category
[/TH]
</tbody>
I have another combo box for "Reason" which displays items based on what was chosen in the Reason Category field. The Reason table contains the Primary Key number from the Reason Category table. (small sample below)
3 | Unsatisfactory Settlements |
0 | U&C Reduction |
2 | Replacement |
1 | Refusal to Insured |
1 | Recession |
<tbody>
[TH="bgcolor: #C0C0C0"] Category Number
[/TH]
[TH="bgcolor: #C0C0C0"] Reason
[/TH]
</tbody>
These are set up so that categories chosen are passed through to a master table. The data passed through is the description not the primary key. However, when creating a select query which creates a new field with the Reason Category and the Reason fields concatenated, the results are as: 3 - Unsatisfactory Settlements. I need it to be displayed as: Claims - Unsatisfactory Settlements
Can someone please help me solve this issue?