Thanks for the reply, missinglinq.
There are no records in the recordset.
Allow additions is set to yes.
RecordSet Type is Dynaset.
The query comes from 3 tables. This is the SQL that the wizard built:
SELECT tblArticles.ArticleName, tblArticleProduct.ProductName, tblArticlePublisher.PubName, tblArticles.ArticleDate, tblArticles.Writer, tblArticles.AdValue, tblArticles.ArticleSize
FROM (tblArticles INNER JOIN tblArticleProduct ON tblArticles.ID = tblArticleProduct.ArticleName) INNER JOIN tblArticlePublisher ON tblArticles.ID = tblArticlePublisher.ArticleName;
I'm thinking its read only: Joins of different directions?
Here's the structure of the tables involved:
tblArticles fields
ID (PK)
ArticleName
ArticleDate
Writer (FK to tblWriters.ID (PK))
AdValue
ArticleSize
tblArticleProduct fields
ID (PK)
ProductName (FK to tblProducts.ID (PK))
ArticleName (FK to tblArticles.ID (PK))
tblArticlePublisher fields
ID (PK)
PubName (FK to tblPublisher.ID (PK))
ArticleName (FK to tblArticles.ID (PK)
So, I'd like a form to enter info when an article is published. I want to capture ArticleName, ArticleDate, Writer, Publisher, ProductName (clients product reviewed), ArticleSize and Advalue (choices of which are in the tblPublisher.)
Do I have the table relationships wrong, or is something else going on?