In the join below, all fields from tblPMHlookUP are populated with data (it
is a lookup table after all). When I run the query I get the info I want from
tblPmhDX but I only get the fldDxDesription from tblPMHlooUP. fldICD9code and
fldTypeCode come up with no data. These fields are populated in tblPMHlookUP,
so I don't understand why I'm not pulling the data into the results set.
Any Help would be greatly appreciated. Thank, Rob
SELECT tblPmhDX.fldPmhDxNo, tblPmhDX.fldPINO, tblPMHlookUp.fldICD9code,
tblPMHlookUp.fldDxDescription, tblPmhDX.fldDateAware,
tblPmhDX.fldDateResolved, tblPmhDX.fldReasonResolved, tblPmhDX.fldNotes,
tblPMHlookUp.fldTypeCode
FROM tblPmhDX INNER JOIN tblPMHlookUp ON
tblPmhDX.fldDXLUno=tblPMHlookUp.fldDxLUNo;
RobUCSD - 10 Mar 2007 20:42 GMT
This post has been moved to Forms Coding.
> In the join below, all fields from tblPMHlookUP are populated with data (it
> is a lookup table after all). When I run the query I get the info I want from
[quoted text clipped - 10 lines]
> FROM tblPmhDX INNER JOIN tblPMHlookUp ON
> tblPmhDX.fldDXLUno=tblPMHlookUp.fldDxLUNo;