I am creating a scoresheet for monitoring customer service representatives in a call center. My score sheet has several different categories and each category is weighted accordingly.
Question 1 -
How do I create general calculations for radio buttons? Each rep is scored on a based on the following: Exceeds Expecatations, Very Good, Average, Below Average, Failing and N/A. Each one has an export value (1-5). However, if N/A is selected, the value becomes 0 instead of N/A. Any suggestions on that? I have used the following Script thus far which places the value from the radio button in the text box. I'm thinking I need a lot more than this though.
event.value = this.getField("MyRadioButtons").value;
Questions 2 -
Is there a way to weight each category accordingly? For example, if I want the rep's greeting to be 10% of the overall score and their closing to be 50% and the friendliness to be 40% over the overall score, am I able to do that?
I apologize for my lack of knowledge with this. I'm great at creating the form, but the calcs/Java have meen making me crazy!
Any help would be great. Thanks.
How do I create general calculations for radio buttons? Each rep is scored on a based on the following: Exceeds Expectations, Very Good, Average, Below Average, Failing and N/A. Each one has an export value (1-5). However, if N/A is selected, the value becomes 0 instead of N/A. Any suggestions on that? I have used the following Script thus far which places the value from the radio button in the text box. I'm thinking I need a lot more than this though.
event.value = this.getField("MyRadioButtons").value;
For category 1 with names of "C0.Q#":
For category 2 with names of "C1.Q#":
For category 3 with names of "C2.Q#":
Is there a way to weight each category accordingly? For example, if I want the rep's greeting to be 10% of the overall score and their closing to be 50% and the friendliness to be 40% over the overall score, am I able to do that?
George Kaiser