D
dscully
I'm using Access 2000 and I would like to add a control to
a form to copy three fields from that record to an
unrelated table. Is this workable?
Is there a way to modify the following SQL statement:
INSERT INTO tblChanges ( [Journal Title], URL, [Date] )
SELECT tblJournals.Title, tblJournals.URL, tblJournals.
[Date Added]
FROM tblJournals;
so that it only applies to the current record, or is it
best done with VBA?
I'm very much groping through the dark with SQL and VBA,
so any help would be appreciated.
dscully
a form to copy three fields from that record to an
unrelated table. Is this workable?
Is there a way to modify the following SQL statement:
INSERT INTO tblChanges ( [Journal Title], URL, [Date] )
SELECT tblJournals.Title, tblJournals.URL, tblJournals.
[Date Added]
FROM tblJournals;
so that it only applies to the current record, or is it
best done with VBA?
I'm very much groping through the dark with SQL and VBA,
so any help would be appreciated.
dscully