Z
Zushiba
I've got a table that looks like this
id,Name,question1,question2,question3,question4,question5,question6,question7,question8,question9,question10,question11,question12
The possible ranges of data in any one of the questions is 4,3,2,1,0 and 9
(9 being a missing or Not Applicable response)
The 9 is what's screwing me up.
I need to count the amount of returned data in each question then devide by
the count of returned answeres ignoring any 9s that show up.
I've tried many ways so far and nothing I try seems to work. In a more
complete version of SQL I could probably do it but Access's (2003 if you're
wondering) version is so limited I can't seem to do it without writing 5 or 6
queries per question.
The output is to go into a report that people who don't know a thing about
access can run and print.
the eventual output I'm looking for would show question1: 4.00 question 2:
3.96 question 3: 2.69 etc etc.
I've gotten far enough using REPLACE (To replace the 9 with a 0) to SUM all
of the data properly in 1 query but I'm stuck on finding a way to COUNT how
many 4,3,2,1,0's were returned while ignoring the 9 so I can get my average.
Is there an easy way to do this?
id,Name,question1,question2,question3,question4,question5,question6,question7,question8,question9,question10,question11,question12
The possible ranges of data in any one of the questions is 4,3,2,1,0 and 9
(9 being a missing or Not Applicable response)
The 9 is what's screwing me up.
I need to count the amount of returned data in each question then devide by
the count of returned answeres ignoring any 9s that show up.
I've tried many ways so far and nothing I try seems to work. In a more
complete version of SQL I could probably do it but Access's (2003 if you're
wondering) version is so limited I can't seem to do it without writing 5 or 6
queries per question.
The output is to go into a report that people who don't know a thing about
access can run and print.
the eventual output I'm looking for would show question1: 4.00 question 2:
3.96 question 3: 2.69 etc etc.
I've gotten far enough using REPLACE (To replace the 9 with a 0) to SUM all
of the data properly in 1 query but I'm stuck on finding a way to COUNT how
many 4,3,2,1,0's were returned while ignoring the 9 so I can get my average.
Is there an easy way to do this?