F
Frank
Hi Folks,
This should be very simple and I don't understand why it's giving me trouble.
I'm trying to delete records from a tbl whose field matches a "bookname"
specified in another 'exclusion' table.
DELETE [WORKING TABLE].*, [WORKING TABLE].BOOK
FROM [WORKING TABLE] INNER JOIN [Tbl-MuniBooksToExclude] ON [WORKING
TABLE].BOOK = [Tbl-MuniBooksToExclude].Bookname
WHERE ((([WORKING TABLE].BOOK)=[Tbl-MuniBooksToExclude]![Bookname]));
This tells me 'could not delete from specified table'. None of these tables
or the DB is locked or read only.
Any advice is appreciated.
Frank
This should be very simple and I don't understand why it's giving me trouble.
I'm trying to delete records from a tbl whose field matches a "bookname"
specified in another 'exclusion' table.
DELETE [WORKING TABLE].*, [WORKING TABLE].BOOK
FROM [WORKING TABLE] INNER JOIN [Tbl-MuniBooksToExclude] ON [WORKING
TABLE].BOOK = [Tbl-MuniBooksToExclude].Bookname
WHERE ((([WORKING TABLE].BOOK)=[Tbl-MuniBooksToExclude]![Bookname]));
This tells me 'could not delete from specified table'. None of these tables
or the DB is locked or read only.
Any advice is appreciated.
Frank