Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

A selection problem..

So, I need a little help. I've got an app I'm working on that deals with questionaires. The questions are like the following How would you rate us, generally? With the answers being

  1. Excellent
  2. Good
  3. Average
  4. Poor

The problem arises from the user clicking on 'Poor' in a list box, and expecting to see all the questionaires in which there was a poor answer, as well as a list of the questions. The questions should be contexted with the average rating of that question, as well as the count of times that question was answered poorly.

The data is structured as follows:

Evaluations
idcompletedByquestionaireVersioncompletecompleted
1Bob Roberts10Y1/21/2010
2Nob Doberts12Y1/22/2010
3Doe Janeson11N2/22/2010
Questionaire
versiondescriptioncreated
10client-210/24/2008
11employee-18/9/2009
12manager-67/8/2009
Questions
idquestionanswerquestionaire
5How's our product?Excellent10
6Rate the customer attitudePoor11
7Rate the employee's effectivenessAverage12
8How was our timing?Excellent10
9How do they compare?Excellent12
10Rate your Qlikview solutionExcellent11
11Rate the system's flexibilityPoor11
12NameDoe Janeson12
13Date1/21/201010
14SupervisorD. Jameson11

So -given list boxes for answer, question, and completedBy- the user expects the following when clicking on 'Poor' in answer:

Synthetic Results
QuestionAverageAnswer Count
Rate the customer attitude73%210
Rate the system's flexibility57%24

Any suggestions on how one might solve this?

1 Solution

Accepted Solutions
Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

Alexander,

1. For the average answer, use Set Analysis condition that ignores the selection of the Answer

2. For the proper count, add additional fields as counters when you load Questionnaiers, Questions, and Answers - something like the following:

load

...

1 as QuestionnaireCounter,

...

Then, simply summarize the relevant Counter to get the number of Questions or Questionnaires.

I hope I understood your needs correctly...

View solution in original post

3 Replies
vgutkovsky
Master II
Master II

Alexander,

I think it would help if you posted a screenshot of your Table Viewer.

Regards,

Not applicable
Author

Sorry for the delay in response, had to generate synthetic data.. my actual model is much more complex.

Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

Alexander,

1. For the average answer, use Set Analysis condition that ignores the selection of the Answer

2. For the proper count, add additional fields as counters when you load Questionnaiers, Questions, and Answers - something like the following:

load

...

1 as QuestionnaireCounter,

...

Then, simply summarize the relevant Counter to get the number of Questions or Questionnaires.

I hope I understood your needs correctly...