You need to be asking this question in the tablesDBDesign newsgroup, since
at its heart this is a table design problem.
What you need is something like this
tblStory
StoryID -AutoNumber
StoryHeadline - txt
StoryDate - date
StoryContent - memo
tblAreas
AreaID - AutoNumber
AreaDesc - text
tblCategory
CategoryID - AutoNumber
CategoryDesc - text
tblStoryArea
StoryID - number
AreaID - number
tblStoryCategory
StoryID - number
CategoryID - number
Now you can assign as many categories or areas to a given story as needed.
HTH;
Amy
>I work for a publication that wants to keep track of all our stories, the
> category they fall into, and the area of town that they cover. I have
[quoted text clipped - 13 lines]
> I'm brand new to Access, so very detailed help would be GREATLY
> appreciated!!
John Spencer - 17 Nov 2005 17:19 GMT
If for some reason, you cannot redesign your tables. then you can use a
UNION query to normalize the view of the data. You can use this query as
the source for reports
You have to build a UNION query in the SQL Text window, but you can make
life easier by using the query grid to start.
Make a standard query of your table and include all the fields you want to
use, but include ONLY ONE of the Area fields _Area1. Once you have the
query set up, Select View:SQL from the menu
Copy all the text
Move to the bottom of the existing text and type
UNION ALL
Under that paste the text you just copied. In this new section, find all
references to Area1 and replace them with Area2
Click on the run button and see if that gives you what you are looking for.
> You need to be asking this question in the tablesDBDesign newsgroup, since
> at its heart this is a table design problem.
SNIP>
> Now you can assign as many categories or areas to a given story as needed.
>
[quoted text clipped - 19 lines]
>> I'm brand new to Access, so very detailed help would be GREATLY
>> appreciated!!