I am slightly capable of using Access but have come to as stand still at this current time and any help would be greatly appreciated. I have posted this in another forum and all the responces I have gotten have been about trying to "Normalize" my data entry.
I have a query that breaks down all the papers that come in by a time frame. From there I am trying to see which topics are discussed within these papers. The issue at hand is that one paper can touch on one or many of the 32 topics to chose from. What I am trying to create is a query that shows each student as a column and then the Topics going across the top and a point being given if each student discusses that topic.
I have 3 tables:
Tables Are: (TableName - Field1 - Field2 - Field3) (The Primary Keys are the ID numbers which are AutoNumbered)
Topics - ID - ShortTitle - Meaning
Lists all the topics that will be an option
Students - ID - Student
List of all students (No there are no repitions of names and won't be)
Papers - Student(Selected from dropdown) - DateRecieved - Topic(More than one Topic ShortTitle will be in this field)
This is the Data Entry Field that is tied to a form where the user can input the data.
So from the pictures I want the end results to be
StudentName - ARM - WAR - DPB
Sam - 1 - 1 - 1
Shawn - 0 - 0 - 0
Sarah - 0 - 1 - 0
Cindy - 0 - 2 - 1
Thomas - 1 - 1 - 0
James - 0 - 0 - 0
I know it is bad to have multiple criteria in a field but with 32 items that answer this I don't know another way. I also have a field which has 122 items that answer it so that is even worse.