That field is simply a select. It can't affect the results of your query.
The "join" can and a "where" statement could. If that were the only field
from that table, then I might start to wonder, but you are pulling
[CAS_CASENUM] from the same table.
Try taking the [CAS_SERV] out of your query and running it again. It should
not change which records are being pulled.
Any MVP's out there watching this post?
Any other ideas?
Rick B
ok - here is my query:
SELECT [AS400].[acctnum], [AS400].[mrn], [AS400].[ssn],
[AS400].[dob], [AS400].[patlstnm], [AS400].[patfstnm],
[AS400].[admitdate], [AS400].[admtype], [AS400].
[admsource], [IPATHDBA_CASE].[CAS_CASENUM],
[IPATHDBA_CASE].[CAS_ACCOUNT], [IPATHDBA_CASE].
[CAS_MEDREC], [IPATHDBA_CASE].[CAS_LNAME], [IPATHDBA_CASE].
[CAS_FNAME], [IPATHDBA_CASE].[CAS_DOB], [IPATHDBA_CASE].
[CAS_DATE], [IPATHDBA_CASE].[CAS_PATSER],
[IPATHDBA_EMPMAS].[EMP_EMPNUM], [IPATHDBA_EMPMAS].
[EMP_LASTNM], [IPATHDBA_EMPMAS].[EMP_FIRSTNM],
[IPATHDBA_PATMAS].[PAT_SERIAL], [IPATHDBA_PATMAS].
[PAT_MEDREC], [IPATHDBA_PATMAS].[PAT_LAST],
[IPATHDBA_PATMAS].[PAT_FIRST], [IPATHDBA_PATMAS].
[PAT_SSN], [IPATHDBA_PATMAS].[PAT_DOB], [IPATHDBA_PATISR].
[PTI_SERIAL], [IPATHDBA_PATISR].[PTI_ISRCODE],
[IPATHDBA_INSURMAS].[ISR_CODE], [IPATHDBA_INSURMAS].
[ISR_NAME], [IPATHDBA_PROCEDURE].[PROC_DOCNUM],
[IPATHDBA_PROMAS].[PMF_DESCRP], [IPATHDBA_CASE].[CAS_SERV]
FROM ((((AS400 INNER JOIN IPATHDBA_CASE ON [AS400].
[acctnum]=[IPATHDBA_CASE].[CAS_ACCOUNT]) INNER JOIN
((IPATHDBA_PROCEDURE INNER JOIN IPATHDBA_PROMAS ON
[IPATHDBA_PROCEDURE].[PROC_NUM]=[IPATHDBA_PROMAS].
[PMF_NUM]) INNER JOIN IPATHDBA_EMPMAS ON
[IPATHDBA_PROCEDURE].[PROC_DOCNUM]=[IPATHDBA_EMPMAS].
[EMP_EMPNUM]) ON [IPATHDBA_CASE].[CAS_CASENUM]=
[IPATHDBA_PROCEDURE].[PROC_CASENUM]) INNER JOIN
IPATHDBA_PATMAS ON [IPATHDBA_CASE].[CAS_PATSER]=
[IPATHDBA_PATMAS].[PAT_SERIAL]) INNER JOIN IPATHDBA_PATISR
ON [IPATHDBA_PATMAS].[PAT_SERIAL]=[IPATHDBA_PATISR].
[PTI_SERIAL]) INNER JOIN IPATHDBA_INSURMAS ON
[IPATHDBA_PATISR].[PTI_ISRCODE]=[IPATHDBA_INSURMAS].
[ISR_CODE];
my problem field is: [IPATHDBA_CASE].[CAS_SERV] when i
added it to the SQL grid it caused this trouble...
when i originally made this report i designed it through
the wizard... doing it that way you choose which fields
you want to see and then later on - if you open your field
list the only fields you see are the ones you chose when
you first started the report... i dont know if that plays
a part in this or what... (i dont use the wizard options
when creating reports in Crystal, but since i am
practically brand new to Access i thought that would be
the better choice... i am now starting to wonder...)
thanks for taking all this time to help me...