Question : Access Query

Hello all, I am having a bit of trouble trying to figure out a query in access and wondering if anyone has some idea's.  I have a make query table that has policy names and exp dates and policy types used in it.  I have filtered out any policy names that have a dash in the name and have an exp date greater than or equal to 8/1/2010.  However in the table the query looks at the REC field which does have duplicates listed, because they could have more than one policy with a different policy type.  The problem is I only want the table the query makes to show policies that only have a policy name (REC) that occurs once.  I was told this could be done all in one query, but I can't figure out how to do it.  Thank you for any help you have to offer.
Attachments:
 
screen shot of the query as it stands
screen shot of the query as it stands
 

Answer : Access Query

If they're all in D.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
Sub x()
  
Dim rFind As Range

Application.ScreenUpdating = False

With Sheets("Reconcile").Columns(4)
    Set rFind = .Find(What:="Cue", LookAt:=xlWhole, MatchCase:=False, SearchFormat:=False)
    If Not rFind Is Nothing Then
        Do
            rFind.EntireRow.Delete
            Set rFind = .Find(What:="Cue", LookAt:=xlWhole, MatchCase:=False, SearchFormat:=False)
        Loop Until rFind Is Nothing
    End If
End With
     
Application.ScreenUpdating = True
     
End Sub
Random Solutions  
 
programming4us programming4us