G
Guest
good day all,
I have the following code that I use to find duplicates withing my
checking account .
SELECT qrycheckingaccountfullreporting.Date,
qrycheckingaccountfullreporting.Debit_Credit,
Count(qrycheckingaccountfullreporting.Debit_Credit) AS CountOfDebit_Credit
FROM qrycheckingaccountfullreporting
GROUP BY qrycheckingaccountfullreporting.Date,
qrycheckingaccountfullreporting.Debit_Credit
HAVING (((Count(qrycheckingaccountfullreporting.Debit_Credit))>1));
What I would like to to do is have a small form or something that I can
open and have the option to delete one of the duplicates of my choice? How
would I go about doing that? Any ideas ...suggestions?
Thanks,
Brook
I have the following code that I use to find duplicates withing my
checking account .
SELECT qrycheckingaccountfullreporting.Date,
qrycheckingaccountfullreporting.Debit_Credit,
Count(qrycheckingaccountfullreporting.Debit_Credit) AS CountOfDebit_Credit
FROM qrycheckingaccountfullreporting
GROUP BY qrycheckingaccountfullreporting.Date,
qrycheckingaccountfullreporting.Debit_Credit
HAVING (((Count(qrycheckingaccountfullreporting.Debit_Credit))>1));
What I would like to to do is have a small form or something that I can
open and have the option to delete one of the duplicates of my choice? How
would I go about doing that? Any ideas ...suggestions?
Thanks,
Brook