Hello guys,
I need help, I have a simple append query:
my question though is, in tblLoans there is a RushRequest field... any what I want to do is that whenever I run the append query above... the RushRequest field in tblLoans will all default to "No" for the new records appended... I only know how to set to default to "No" when creating new records (via form properties) but I don't know how to default to "No" for appended records...
Any help is greatly appreciated...
thanks...
I need help, I have a simple append query:
Code:
INSERT INTO tblLoans (LoanNumber)
SELECT tblCopy.LoanNumber
FROM tblCopy;
my question though is, in tblLoans there is a RushRequest field... any what I want to do is that whenever I run the append query above... the RushRequest field in tblLoans will all default to "No" for the new records appended... I only know how to set to default to "No" when creating new records (via form properties) but I don't know how to default to "No" for appended records...
Any help is greatly appreciated...
thanks...