R
Randy
I have an append query which I've received help from this news group (John
Vinson), thanks John, It works great except the result is misssing the
first number of a range of numbers. If I enter 10000 in the fld
[BeginCertNolbl] and 10025 in the fld [EndCertNolbl] the result is the
number 10000 is missing from tbl "CheckedOutCertsAllNumbers". The first
number in the tbl is 10001. The last number comes out ok...Any Ideas?
Thanks again...Randy
INSERT INTO CheckedOutCertsAllNumbers ( CertNo, Inspector )
SELECT [N]+[Forms]![frmCheckedOutCertificates]![BeginCertNolbl] AS Expr1,
CheckedOutCertificates.Inspector
FROM Num, CheckedOutCertificates
WHERE
((([N]+[Forms]![frmCheckedOutCertificates]![BeginCertNolbl])<=[Forms]![frmCheckedOutCertificates]![EndCertNolbl])
AND
((CheckedOutCertificates.Inspector)=[Forms]![frmCheckedOutCertificates]![cboInspector]));
Vinson), thanks John, It works great except the result is misssing the
first number of a range of numbers. If I enter 10000 in the fld
[BeginCertNolbl] and 10025 in the fld [EndCertNolbl] the result is the
number 10000 is missing from tbl "CheckedOutCertsAllNumbers". The first
number in the tbl is 10001. The last number comes out ok...Any Ideas?
Thanks again...Randy
INSERT INTO CheckedOutCertsAllNumbers ( CertNo, Inspector )
SELECT [N]+[Forms]![frmCheckedOutCertificates]![BeginCertNolbl] AS Expr1,
CheckedOutCertificates.Inspector
FROM Num, CheckedOutCertificates
WHERE
((([N]+[Forms]![frmCheckedOutCertificates]![BeginCertNolbl])<=[Forms]![frmCheckedOutCertificates]![EndCertNolbl])
AND
((CheckedOutCertificates.Inspector)=[Forms]![frmCheckedOutCertificates]![cboInspector]));