Here is the SQL View:
SELECT CaseTable.Hospital, CaseTable.CDSinitials, First(CDSlist.Name) AS
FirstOfName, CaseTable.PatientAccountNumber, CaseTable.SSN, CaseTable.MRN,
CaseTable.PtLastName, CaseTable.DischDisp, CaseTable.PtFirstName,
CaseTable.
MedRecCoderInitials, Coders.Name, CaseTable.DiscDate, CaseTable.DiscDRG,
DRGtable_2.strDRGdescription, DRGtable_2.intWeight, CaseTable.[SOI APR],
CaseTable.[ROM APR], First(Coders.Name) AS FirstOfName1, CaseTable.[TC
Reviewed], CaseTable.TCcodechange, CaseTable.TCDRG, DRGtable_1.
strDRGdescription, DRGtable_1.intWeight, CaseTable.[NewSOI APR],
CaseTable.
[NewRom Apr], CaseTable.[New APS], CaseTable.TCcommentToCDS, CaseTable.
DRGdiscrepReason, CaseTable.FinalCDSdrg, DRGtable.strDRGdescription,
DRGtable.
intWeight, CaseTable.Auditor, CaseTable.TCcommentToCoder
FROM ((((CaseTable LEFT JOIN CDSlist ON CaseTable.CDSinitials = CDSlist.
Initials) LEFT JOIN Coders ON CaseTable.MedRecCoderInitials =
Coders.Initials)
LEFT JOIN DRGtable ON CaseTable.FinalCDSdrg = DRGtable.strDRG) LEFT JOIN
DRGtable AS DRGtable_1 ON CaseTable.TCDRG = DRGtable_1.strDRG) LEFT JOIN
DRGtable AS DRGtable_2 ON CaseTable.DiscDRG = DRGtable_2.strDRG
GROUP BY CaseTable.Hospital, CaseTable.CDSinitials, CaseTable.
PatientAccountNumber, CaseTable.SSN, CaseTable.MRN, CaseTable.PtLastName,
CaseTable.DischDisp, CaseTable.PtFirstName, CaseTable.MedRecCoderInitials,
Coders.Name, CaseTable.DiscDate, CaseTable.DiscDRG, DRGtable_2.
strDRGdescription, DRGtable_2.intWeight, CaseTable.[SOI APR],
CaseTable.[ROM
APR], CaseTable.[TC Reviewed], CaseTable.TCcodechange, CaseTable.TCDRG,
DRGtable_1.strDRGdescription, DRGtable_1.intWeight, CaseTable.[NewSOI
APR],
CaseTable.[NewRom Apr], CaseTable.[New APS], CaseTable.TCcommentToCDS,
CaseTable.DRGdiscrepReason, CaseTable.FinalCDSdrg,
DRGtable.strDRGdescription,
DRGtable.intWeight, CaseTable.Auditor, CaseTable.TCcommentToCoder
HAVING (((CaseTable.MedRecCoderInitials)=[Enter Coder Initials]) AND (
(CaseTable.DiscDate) Between [Beginning Date] And [End Date]) AND
((CaseTable.
DRGdiscrepReason)="2" Or (CaseTable.DRGdiscrepReason)="9"));
Duane said:
Truncated means "doesn't show all of the text". It would be a good clue if
the shown text cut off at 255 characters.
I would like you to find the report's Record Source property and open it.
View the query in datasheet view to see if your text is truncated in the
record source. If so, reply back with the SQL view of your report's record
source.
The area that isn't printing is a memo field (data type). I don't know
what
[quoted text clipped - 13 lines]