I want to make records of documents in an office (that is, hard copies, not
electronic), organise them in categories and subcategories (possibly a
different number of subcategories for different documents) and link related
documents together. Would Access be suited to this problem? Can someone
suggest a better solution?
Thanks very much.
Access would be quite capable, as Nadia suggests (and heed her caution
about the manual procedures you'll need to keep this up to date!!)
I would start with three tables:
Documents
DocumentID Primary Key <see below>
Title Text
<other identifying info>
Categories
CategoryID Autonumber Primary Key
ParentCategory Long Integer
Category Text
DocumentCategory
DocumentID <link to Documents>
CategoryID <link to Categories>
The DocumentID should be a stable, unique, and short identifier for
the document. You may have a manually assigned ID; if not, I would
suggest using a simple DocumentNumber, a Long Integer field assigned
programmatically. Don't use an Autonumber, they always will have gaps
and aren't suitable for human viewing.
The Categories table as shown will allow sub-, sub-sub-, sub-sub-sub
ad infinitum categories; a "top level" category will have a NULL in
the ParentCategory field, and a subcategory will contain the ID of the
parent category. For instance you could have
CategoryID 317; ParentCategory NULL; Category "Fiction"
CategoryID 9824; ParentCategory 317; Category "Novels"
CategoryID 3398; ParentCategory 9824; Category "Historical Novels"
The DocumentCategory table will let you assign each document to any
desired number of categories.
You may want other tables as well - Authors, StorageLocations, etc.,
depending on your needs.
John W. Vinson[MVP]