by the way here is my sql:
SELECT Dosage_BwtShifting_2.PatientID,
Dosage_BwtShifting_2.MedicationType1
AS MedType, Dosage_BwtShifting_2.PDate, Dosage_BwtShifting_2.DateofExam,
Dosage_BwtShifting_2.BdyWt_CO, Dosage_BwtShifting_2.BWT,
Dosage_BwtShifting_2.MedicationVol, Dosage_BwtShifting_2.DaysOnMed,
Dosage_BwtShifting_2.Discontinued, Dosage_BwtShifting_3.OmittDate,
Dosage_BwtShifting_2.MedicationFrequency,
Dosage_BwtShifting_2.Concentration,
IIf([Dosage_BwtShifting_2].[Discontinued]="DC",[Dosage_BwtShifting_2].[DateofExam])
AS DCDate
FROM Dosage_BwtShifting_3 RIGHT JOIN Dosage_BwtShifting_2 ON
Dosage_BwtShifting_3.OffDate = Dosage_BwtShifting_2.PDate
WHERE (((Dosage_BwtShifting_3.OmittDate) Is Null));
Al
Al said:
I have a query that was runing fine and still is. However, all of a
sudden I
can not get into the QBE view, I get the message "Query too complex". I
still
can get into the SQL view and the query still runs ok. why am I getting
this
message?