Good afternoon all,
I'm a novice Access user. I know some of the terminology and have taken a few certification prep courses but I don't regularly use the program so I still get stuck on what are probably trivial matters.
I'm building a database to track insurance claims.
For each claim I'm recording the claim's denial codes using a lookup to another table "tblDenialCodes" which just has fields for the [DenialCode] and [Code_Desc]. When I'm entering the claim to "tblInsuranceClaims" to the [Denial_Codes] field, I've allowed Multiple Values so I can just click the check boxes.
However, I don't have all the codes memorized. So on the Form "frmInsurance" I've put a textbox in the footer which is meant to display the tblDenialCodes.Code_Desc for each denial code selected in tblInsuranceClaims.Denial_Codes.
I can't seem to figure out how to make this work. Even the query I created 'qryInsuranceDenialCodes' which attempts to do this using SQL:
Code:
SELECT tblInsurance.Denial_Codes, tblNationwideDenialCodes.Code_Desc
FROM tblNationwideDenialCodes INNER JOIN tblInsurance ON tblNationwideDenialCodes.[DenialCode] = tblInsurance.[Denial_Codes].[Value];
The result only displays one of the descriptions. e.g If codes ZA11 and ZR11 are selected the query only retrieves the description for ZA11.
So I'm just not understanding how to properly create this functionality.
Can anyone guide me towards the end result? Keep in mind my experience with Access and SQL is limited.
Thanks
G