R
Randy
This is a second posting. The first posting didn't solve my problem. When
I run this query the first record [BeginCertNolbl] (100 to 124)
[EndCertNolbl] is appended correctly. I get 24 records of 100, 101, 102,
all the way to 124. The next new record is enter (125 to 149) I get
appended to the table 125, 125, 126, 126,127, 127, 128, 128 etc.
duplicates. The next new record of 150 to 174, I get 150, 150, 150, 151,
151, 151, etc. Three times. All fields are numbers, and long intiger. I
did not create this append query, I got it off this newsgroup, I am a
beginner trying to learn. Help is appreciated..Thanks..
INSERT INTO CheckedOutCertsAllNumbers ( CertNo, Inspector, TypeOfCert,
DateCheckedOut, BeginingCertInitial )
SELECT [Forms]![frmCheckedOutCertificates]![BeginCertNolbl] AS Expr1,
CheckedOutCertificates.Inspector, CheckedOutCertificates.TypeOfCert,
CheckedOutCertificates.DateCheckedOut,
CheckedOutCertificates.BeginningInitial
FROM CheckedOutCertificates
WHERE
(((CheckedOutCertificates.Inspector)=[Forms]![frmCheckedOutCertificates]![cb
oInspector]) AND
((CheckedOutCertificates.TypeOfCert)=[Forms]![frmCheckedOutCertificates]![cb
oTypeofCert]) AND
((CheckedOutCertificates.DateCheckedOut)=[Forms]![frmCheckedOutCertificates]
![DateCheckedOutlbl]) AND
((CheckedOutCertificates.BeginningInitial)=[Forms]![frmCheckedOutCertificate
s]![BeginningInitiallbl]));
I run this query the first record [BeginCertNolbl] (100 to 124)
[EndCertNolbl] is appended correctly. I get 24 records of 100, 101, 102,
all the way to 124. The next new record is enter (125 to 149) I get
appended to the table 125, 125, 126, 126,127, 127, 128, 128 etc.
duplicates. The next new record of 150 to 174, I get 150, 150, 150, 151,
151, 151, etc. Three times. All fields are numbers, and long intiger. I
did not create this append query, I got it off this newsgroup, I am a
beginner trying to learn. Help is appreciated..Thanks..
INSERT INTO CheckedOutCertsAllNumbers ( CertNo, Inspector, TypeOfCert,
DateCheckedOut, BeginingCertInitial )
SELECT [Forms]![frmCheckedOutCertificates]![BeginCertNolbl] AS Expr1,
CheckedOutCertificates.Inspector, CheckedOutCertificates.TypeOfCert,
CheckedOutCertificates.DateCheckedOut,
CheckedOutCertificates.BeginningInitial
FROM CheckedOutCertificates
WHERE
(((CheckedOutCertificates.Inspector)=[Forms]![frmCheckedOutCertificates]![cb
oInspector]) AND
((CheckedOutCertificates.TypeOfCert)=[Forms]![frmCheckedOutCertificates]![cb
oTypeofCert]) AND
((CheckedOutCertificates.DateCheckedOut)=[Forms]![frmCheckedOutCertificates]
![DateCheckedOutlbl]) AND
((CheckedOutCertificates.BeginningInitial)=[Forms]![frmCheckedOutCertificate
s]![BeginningInitiallbl]));