For a simple downpay = totaldue in one record, the following should work:
SELECT *
FROM [tblAllRecords]
WHERE [Downpay]=[TotalDue] ;

Signature
Jerry Whittle, Microsoft Access MVP
Light. Strong. Cheap. Pick two. Keith Bontrager - Bicycle Builder.
> I have a table that has two columns, one is for "downpay" amount the other is
> for "totaldue" amount. I'm trying to identify duplicate values to see who
[quoted text clipped - 16 lines]
> [Downpay],[TotalDue] HAVING Count(*)>1 And [TotalDue] =
> [tblAllRecords].[TotalDue])
SITCFanTN - 16 Apr 2008 17:12 GMT
Thanks for your help Jerry but I'm really not sure what you are instructing
me to do. I don't know what you mean by "totaldue in one record". My table
has 300K records. Can you eleborate a bit more for me. Thanks
> For a simple downpay = totaldue in one record, the following should work:
>
[quoted text clipped - 22 lines]
> > [Downpay],[TotalDue] HAVING Count(*)>1 And [TotalDue] =
> > [tblAllRecords].[TotalDue])
Jerry Whittle - 16 Apr 2008 17:14 GMT
Try running the SQL statement I sent below. Is is close to doing what you want?

Signature
Jerry Whittle, Microsoft Access MVP
Light. Strong. Cheap. Pick two. Keith Bontrager - Bicycle Builder.
> Thanks for your help Jerry but I'm really not sure what you are instructing
> me to do. I don't know what you mean by "totaldue in one record". My table
[quoted text clipped - 26 lines]
> > > [Downpay],[TotalDue] HAVING Count(*)>1 And [TotalDue] =
> > > [tblAllRecords].[TotalDue])
SITCFanTN - 16 Apr 2008 17:51 GMT
Thanks so much, it worked great!
> Try running the SQL statement I sent below. Is is close to doing what you want?
>
[quoted text clipped - 28 lines]
> > > > [Downpay],[TotalDue] HAVING Count(*)>1 And [TotalDue] =
> > > > [tblAllRecords].[TotalDue])