I need to build a report for my work that tracks the trends of a weekly questionnaire that gets sent out, but I am really struggling trying to develop a way too set this up. Should I use Access? Queries? I don't know!! I know I've probably been overthinking this and there is likely a simple solution, so I was hoping to get some input from yall!
So, the questionnaire contains 100 different questions. All of the questions fall under 1 of 5 different categories or subjects. The questions and categories will always be the same, regardless of the week.
Each week I receive a new report with an average of the score for each question (so say question 39 has a 53% pass/fail score). I currently have about 100 weeks worth of these scores.
See sample tables below to get an idea of what I am talking about:
[TABLE="class: outer_border, width: 500"]
<tbody>[TR]
[TD="align: center"]QuestionID[/TD]
[TD="align: center"]Question Category[/TD]
[TD="align: center"]Question[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Safety[/TD]
[TD]What is your DOB?[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]HR[/TD]
[TD]When were you hired?[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]LP[/TD]
[TD]What is your SSN?[/TD]
[/TR]
</tbody>[/TABLE]
[TABLE="class: outer_border, width: 500"]
<tbody>[TR]
[TD="align: center"]QuestionID[/TD]
[TD="align: center"]Week 1 Scores[/TD]
[TD="align: center"]Week 2 Scores[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]12.32%[/TD]
[TD]43.23%[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]32.33%[/TD]
[TD]34.43%[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]25.54%[/TD]
[TD]98.45%[/TD]
[/TR]
</tbody>[/TABLE]
[TABLE="class: outer_border, width: 500"]
<tbody>[TR]
[TD="align: center"]DateID[/TD]
[TD="align: center"]TestID[/TD]
[TD="align: center"]Date[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]1[/TD]
[TD]1/1/15[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]2[/TD]
[TD]1/8/15[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]3[/TD]
[TD]1/15/15[/TD]
[/TR]
</tbody>[/TABLE]
What I am trying to do is create something (ideally a pivot table/chart) that can track these results a couple of different ways (that's why I was thinking pivot table/chart so I can incorporate slicers). But regardless, I gotta be able to keep track of the date, question, and the scores associated with each date. So I want to be able to say "the results of question 3 increased from January to April" or something. Just a way of tracking the date and scores associated.
What's tripping me up right now is I don't know how to relate the scores to a date. If you see in the 2nd table, I can link the question to a score no problem, but how would I put the DateID in there too?
[TABLE="class: outer_border, width: 500"]
<tbody>[TR]
[TD="align: center"]QuestionID[/TD]
[TD="align: center"]DateID[/TD]
[TD="align: center"]Week 1 Score[/TD]
[TD="align: center"]Week 2 Score[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]1[/TD]
[TD]12.32%[/TD]
[TD]?[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]1[/TD]
[TD]32.33%[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]1[/TD]
[TD]25.54%[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
I suppose I could create a new table for each week's result, but I have so many that I would have 100s of tables!
Anyways would really appreciate some feedback or suggestions in creating something.
THank you!
So, the questionnaire contains 100 different questions. All of the questions fall under 1 of 5 different categories or subjects. The questions and categories will always be the same, regardless of the week.
Each week I receive a new report with an average of the score for each question (so say question 39 has a 53% pass/fail score). I currently have about 100 weeks worth of these scores.
See sample tables below to get an idea of what I am talking about:
[TABLE="class: outer_border, width: 500"]
<tbody>[TR]
[TD="align: center"]QuestionID[/TD]
[TD="align: center"]Question Category[/TD]
[TD="align: center"]Question[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Safety[/TD]
[TD]What is your DOB?[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]HR[/TD]
[TD]When were you hired?[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]LP[/TD]
[TD]What is your SSN?[/TD]
[/TR]
</tbody>[/TABLE]
[TABLE="class: outer_border, width: 500"]
<tbody>[TR]
[TD="align: center"]QuestionID[/TD]
[TD="align: center"]Week 1 Scores[/TD]
[TD="align: center"]Week 2 Scores[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]12.32%[/TD]
[TD]43.23%[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]32.33%[/TD]
[TD]34.43%[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]25.54%[/TD]
[TD]98.45%[/TD]
[/TR]
</tbody>[/TABLE]
[TABLE="class: outer_border, width: 500"]
<tbody>[TR]
[TD="align: center"]DateID[/TD]
[TD="align: center"]TestID[/TD]
[TD="align: center"]Date[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]1[/TD]
[TD]1/1/15[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]2[/TD]
[TD]1/8/15[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]3[/TD]
[TD]1/15/15[/TD]
[/TR]
</tbody>[/TABLE]
What I am trying to do is create something (ideally a pivot table/chart) that can track these results a couple of different ways (that's why I was thinking pivot table/chart so I can incorporate slicers). But regardless, I gotta be able to keep track of the date, question, and the scores associated with each date. So I want to be able to say "the results of question 3 increased from January to April" or something. Just a way of tracking the date and scores associated.
What's tripping me up right now is I don't know how to relate the scores to a date. If you see in the 2nd table, I can link the question to a score no problem, but how would I put the DateID in there too?
[TABLE="class: outer_border, width: 500"]
<tbody>[TR]
[TD="align: center"]QuestionID[/TD]
[TD="align: center"]DateID[/TD]
[TD="align: center"]Week 1 Score[/TD]
[TD="align: center"]Week 2 Score[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]1[/TD]
[TD]12.32%[/TD]
[TD]?[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]1[/TD]
[TD]32.33%[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]1[/TD]
[TD]25.54%[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
I suppose I could create a new table for each week's result, but I have so many that I would have 100s of tables!
Anyways would really appreciate some feedback or suggestions in creating something.
THank you!