E
Ed Sorensen
I have three linked tables
Documents: containing a primary key (DocID) and two text fields (DocNum and
DocName)
Revisions: containing a primary key (RevID), a link to the document table
(DocID) and a text field (Rev)
Actions: containing a primary key (Action ID), a link to the Rev table
(RevID) and a date field (ActionDate)
For each document, I want to find the newest revision and the date on which
the last action was performed on the revision.
The revisions are identified by an alphanumeric character (A through Z and 0
to 99) Revisions 0 through 99 are newer than revisions A through Z).
How do I set up a query that gives me all this information?
Documents: containing a primary key (DocID) and two text fields (DocNum and
DocName)
Revisions: containing a primary key (RevID), a link to the document table
(DocID) and a text field (Rev)
Actions: containing a primary key (Action ID), a link to the Rev table
(RevID) and a date field (ActionDate)
For each document, I want to find the newest revision and the date on which
the last action was performed on the revision.
The revisions are identified by an alphanumeric character (A through Z and 0
to 99) Revisions 0 through 99 are newer than revisions A through Z).
How do I set up a query that gives me all this information?