I have a View with the following code:SELECTID, CaseNumber1, DateFiled, OpenActionCode, JudgeNumber, TermDate, TermActionCodeID, ReOpenedCase, VisitJudge, CaseTypeNumber, SubmittedDate, RulingDate,PreviousFileDate, Note, CDatefiled, CTermdate, CSubmittedDate, CRulingDateFROMtblSupremeCourtWHERETermDate IS NULL OR TermActionCodeID = 'U' OR TermActionCodeID = 'B' OR TermActionCodeID = 'X'ORDER BYCaseNumber1
I have a CaseNumber that has two records in tblSupremeCourtCaseNumber1~~~~~TermDate~~~~~TermActionCodeID00CV000773~~~~~~2002-08-15~~~~~~X00CV000773~~~~~~2003-01-23~~~~~~SCurrently it displays in the view because it has an X as the TermActionCodeID, but I don't want it to be displayed because it has a later TermDate that happens have a TermActionCodeID of S.Could someone please Help, Thanks!