Quiz - Rating scale (survey) Output

Hello again guys
This time i have some trouble with quizes in my project. I thought that it is easy to create survey quiz but...:)
What (or where) is output from rating scale quiz slides?
There are two rating scale slides in my project (each with 5 questions rated 1-5) but there is absolutely no output or output settings that alows me display user answers.
Is it possible to somehow show total sum of points from survey questions?
(captivate 5)
Thx, Martin

Well...
its project for people to help them deal with stress.
One part of whole project is this assignment:
There are about 15 questions with 5 answers. Number of answer coresponds with points obtained.
Example:
A) "I usualy sleep 7-8 hours a day" : 1 ("almost always"), 2 ("often"), 3 ("it depends"), 4 ("almost never") to 5 ("never")
B) "I am able to effectively organize my free time" : 1 ("almost always"), 2 ("often"), 3 ("it depends"), 4 ("almost never") to 5 ("never")
.etc
at the end i need to sum points from answers because there are 3 colums with some advices to help user deal with stress acording to total sum of points.
20 – 39 ...blah blah you are fine
40 – 59 ..blah blah get a puppy...
60 – 85 ..blah blah go hang yourself.
..now personaly im somewhere between 95-100 points...

Similar Messages

  • Add new rating scale text filed in SharePoint 2010 Survey List???

    Would it be possible to add extra text range field in SharePoint survey Rating Scale filed? so far i know it could be achieved by using Client Java script.  i have added following script in NewForm.aspx, EditForm.aspx, DispForm.aspx and Summary.aspx
    but nothing its reflecting into the UI page. Another problem is if i have multiple Questions with rating scale field, how i am gonna achieve extra text range for each question in one page/separator page like the following way?
    VeryDissatisfied          Dissatisfied     not satisfied    Satisfied    Very Satisfied   Do not participate
            1                           2                      3                
    4                   5                     6
    These JavaScript codes are all added in the content tag which contentplaceholderid="PlaceHolderMain". should i add this script to another location?
    For NewForm.aspx; DispForm.aspx; EditForm.aspx
    <script type="text/javascript">
    var tables = document.getElementsByTagName('table');
    for (var i=0; i<tables.length; i++)
    if (tables[i].summary == 'Rating Scale Question')
    var trs = tables[i].getElementsByTagName('tr'); 
    var tds = trs[0].getElementsByTagName('td'); 
    tds[2].colSpan = 1;
    tds[2].innerHTML = 'your range text';
    tds[3].colSpan = 1;
    tds[3].innerHTML = your range text';
    tds[4].colSpan = 1;
    tds[4].innerHTML = your range text';
    tds[5].colSpan = 1;
    tds[5].innerHTML = your range text'; 
    </script>
    For Summary.aspx
    <script type="text/javascript">
    var tables = document.getElementsByTagName('table');
    for (var i=0; i<tables.length; i++)
    if (tables[i].className == 'ms-surveyVBarT')
    tables[i].deleteRow(0);
    var row = tables[i].insertRow(0);
    var cell0 = row.insertCell(0);
    var cell1 = row.insertCell(1);
    var cell2 = row.insertCell(2);
    var cell3 = row.insertCell(3);
    cell0.innerHTML = your range text';
    cell1.innerHTML = your range text';
    cell2.innerHTML = your range text';
    cell3.innerHTML = your range text';
    </script>
    Thanks in advanced!

    Hi,
    According to your post, my understanding is that you wanted to Add new rating scale title fields in SharePoint Survey.
    I have done a test, it works fine. I have just added the function to load the code, refer to the following:
    For NewForm.aspx; DispForm.aspx; EditForm.aspx
    <script type="text/javascript">
    _spBodyOnLoadFunctionNames.push("ChangeTitle");
    function ChangeTitle() {
    var tables = document.getElementsByTagName('table');
    for (var i = 0; i < tables.length; i++) {
    if (tables[i].summary == 'Rating Scale Question') {
    var trs = tables[i].getElementsByTagName('tr');
    var tds = trs[0].getElementsByTagName('td');
    tds[2].colSpan = 1;
    tds[2].innerHTML = 'your range text';
    tds[3].colSpan = 1;
    tds[3].innerHTML = 'your range text';
    tds[4].colSpan = 1;
    tds[4].innerHTML = 'your range text';
    tds[5].colSpan = 1;
    tds[5].innerHTML = 'your range text';
    </script>
    For Summary.aspx
    <script type="text/javascript">
    _spBodyOnLoadFunctionNames.push("ChangeTitle");
    function ChangeTitle() {
    var tables = document.getElementsByTagName('table');
    for (var i=0; i<tables.length; i++)
    if (tables[i].summary == 'Rating Scale Question')
    var trs = tables[i].getElementsByTagName('tr');
    var tds = trs[0].getElementsByTagName('td');
    tds[2].colSpan = 1;
    tds[2].innerHTML = 'your range text';
    tds[3].colSpan = 1;
    tds[3].innerHTML = your range text';
    tds[4].colSpan = 1;
    tds[4].innerHTML = your range text';
    tds[5].colSpan = 1;
    tds[5].innerHTML = your range text';
    < /script>
    For Summary.aspx
    < script type="text/javascript">
    var tables = document.getElementsByTagName('table');
    for (var i=0; i<tables.length; i++)
    if (tables[i].className == 'ms-surveyVBarT')
    tables[i].deleteRow(0);
    var row = tables[i].insertRow(0);
    var cell0 = row.insertCell(0);
    var cell1 = row.insertCell(1);
    var cell2 = row.insertCell(2);
    var cell3 = row.insertCell(3);
    cell0.innerHTML = your range text';
    cell1.innerHTML = your range text';
    cell2.innerHTML = your range text';
    cell3.innerHTML = your range text';
    </script>
    Best Regards,
    Lisa Chen

  • How to custom Rating Scale field to add more range text in survey on sharepoint 2013

    When we use the rating scale field to create question in survey. You can only set three range texts for each question. Is there any way to allocate a range text for each range ? Such as below :
                                     Low             Average        High       Excellent      
    Important
                                     1                  2                  3    
              4                     5
    I put extra 1 Rating Text Value / Excellent . but it does not show at respond to survey page.
    <Field Type="GridChoice" DisplayName="rating4" Required="FALSE" EnforceUniqueValues="FALSE" Indexed="FALSE" GridStartNum="1" GridEndNum="5" GridTxtRng1="Low" GridTxtRng2="Average"
    GridTxtRng3="High" GridTxtRng4="Excellent" GridNATxt="N/A" ID="{5259c17a-9260-4857-8594-f7dc28281763}" SourceID="{2712de13-4857-4225-b5bd-06697c96ad5b}" StaticName="rating4" Name="rating4"
    ColName="ntext2" RowOrdinal="0"><CHOICES><CHOICE>q</CHOICE><CHOICE>g</CHOICE><CHOICE>h</CHOICE></CHOICES></Field>
    <Field Type="GridChoice" DisplayName="rating4" Required="FALSE" EnforceUniqueValues="FALSE" Indexed="FALSE" GridStartNum="1" GridEndNum="5" GridTxtRng1="Low" GridTxtRng2="Average"
    GridTxtRng3="High" GridTxtRng4="Excellent" GridNATxt="N/A" ID="{5259c17a-9260-4857-8594-f7dc28281763}" SourceID="{2712de13-4857-4225-b5bd-06697c96ad5b}" StaticName="rating4" Name="rating4"
    ColName="ntext2" RowOrdinal="0"><CHOICES><CHOICE>q</CHOICE><CHOICE>g</CHOICE><CHOICE>h</CHOICE></CHOICES></Field> 
    Thanks all your help !

    Hi,
    From Microsoft official site, we can find the definition of “Range Text”: enter descriptions for the low, middle, and high scale. It means there are only
    three types of description which is the by design behavior. For example, if we have 8 number range, the purpose of the range text is to tell users that 8 is highest and 1 is the lowest. We don’t need to specific description for each column.
    As you really want to achieve the goal, we can write client JavaScript code to dynamically update the UI on page. We use SharePoint designer updates the “NewForm.aspx”,
    “DispForm.aspx”, “EditForm.aspx” and “Summary.aspx” to add custom JavaScript codes.
    For NewForm.aspx; DispForm.aspx; EditForm.aspx
    <script type="text/javascript">
    var tables = document.getElementsByTagName('table');
    for (var i=0; i<tables.length; i++)
    if (tables[i].summary == 'Rating Scale Question')
    var trs = tables[i].getElementsByTagName('tr');
    var tds = trs[0].getElementsByTagName('td');
    tds[2].colSpan = 1;
    tds[2].innerHTML = 'your range text';
    tds[3].colSpan = 1;
    tds[3].innerHTML = your range text';
    tds[4].colSpan = 1;
    tds[4].innerHTML = your range text';
    tds[5].colSpan = 1;
    tds[5].innerHTML = your range text';
    </script>
    For Summary.aspx
    <script type="text/javascript">
    var tables = document.getElementsByTagName('table');
    for (var i=0; i<tables.length; i++)
    if (tables[i].className == 'ms-surveyVBarT')
    tables[i].deleteRow(0);
    var row = tables[i].insertRow(0);
    var cell0 = row.insertCell(0);
    var cell1 = row.insertCell(1);
    var cell2 = row.insertCell(2);
    var cell3 = row.insertCell(3);
    cell0.innerHTML = your range text';
    cell1.innerHTML = your range text';
    cell2.innerHTML = your range text';
    cell3.innerHTML = your range text';
    </script>
    These JavaScript codes are all added in the content tag which contentplaceholderid="PlaceHolderMain".
    Hope it helps.
    Xue-Mei Chang

  • Survey Rating Scale - change number range order

    Using SharePoint 2010 survey and have a requirement to change the rating number range from 1-5 to 5-1 when it is displayed in the survey
    Does anyone know if there is a way to do this? I know I can change whether the 1 is high or low with the Range text, but how to actually reverse the order.
    I see I can change spacing between questions, modify fonts, etc in the survery using css, but nothing on the rating scale.
    Any suggestions would be appreciated.
    thanks
    VTJeanne

    <script type="text/javascript">
    //<![CDATA[
    var tables = document.getElementsByTagName('table');
    for (var i=0; i<tables.length; i++)
    if (tables[i].summary == 'Rating Scale Question')
    var trs = tables[i].getElementsByTagName('tr');
    var ths= trs[1].getElementsByTagName('th');
    ths[0].colSpan = 1;
    ths[0].innerHTML='5';
    ths[1].colSpan = 1;
    ths[1].innerHTML='4';
    ths[2].colSpan = 1;
    ths[2].innerHTML='3';
    ths[3].colSpan = 1;
    ths[3].innerHTML='2';
    ths[4].colSpan = 1;
    ths[4].innerHTML='1';
    //]]>
    </script>
    hari

  • Survey - set default rating on rating scale answer type

    I've created a survey with a lot of rating scales as answer types.
    Can I set a default rating answer for those scales (similar to setting a default answer for the choice answer type)?
    I don't want to force to user to click on the N/A option for every sub-question but rather set it as default, since the questions will all be mandatory.
    This way, I want to reduce the amount of clicks/time spent on the survey for the user.
    I would appreciate any help!

    Hello, 
    can you post a few samples of the desired centered layout? Are you sure that the "numerous
    pages that other people get theirs centered" have been created with SharePoint 2010 at all? There are a lot of cheap or free Survey solutions on the Internet.
    The Survey in SP 2010 still uses a lot of SP 2007 (MOSS) functionality. A standard rating question will look like this, out of the box in 2010, no changes made.
    Can you post a screenshot of your survey and explain what you want to change?
    The elements of the above screenshot are heavily governed by JavaScript. Changing their appearance or orientation will not be trivial.
    Are you prepared to employ Javascript, jQuery and CSS? You will need a very good understanding of these to center the radio buttons for each question. 
    Which leads to: why do you feel the need to center these option buttons in the first place? What additional benefit would centering the buttons provide?
    Weigh the benefits of centering the scale buttons against the effort involved to learn and implement how to do it. 
    Is it just aesthetics? Or is there a functional element? Can your budget justify spending a week of work to learn how to center the radio buttons? Or will your company run just as well with the out of the box settings?
    cheers, teylyn

  • Question About Rating Scale (Likert)

    I am building quiz survey slides where users answer survey
    questions, and the results are compared against scores of top rated
    users. In the process of building the slides, I am not seeing any
    dialog box where I can enter the correct answer against the quiz
    taker's, and when I test the quiz for results, the quiz taker is
    always right. I see there is a review area box on the stage, and
    when I double-click on it for its properties, there are options for
    an incorrect answer where the right answer should be listed. How
    come it doesn't pop up when I enter an incorrect answer in the
    preview? Any info would be greatly appreciated.

    The rating scale can't support multiple selections per row. You would have to use the multiple choice field (though its not a table layout).
    We do support multiple fields on one line now. This post explains:
    http://forums.adobe.com/thread/1144130
    Randy

  • Rating Scale Results

    I would like to create a survey using rating scales.
    Q1: How do I get a page summing the results?
    Q2: Is it possible to have questions in categories and have the response to that question stored in that category.
    Example: 4 kinds of questions, 40 questions in total, all questions mixed.
    When a question from category 1 is answered, the result is stored in the results of category 1.
    Andrew

    Hello,
    No answer yet means normally that the question is not clear to many users? What is meant by 'summing the results'?
    Maybe I could help, but try to explain a little bit better. Have a look at:
    http://blog.lilybiri.com/graded-survey
    http://blog.lilybiri.com/intermediate-score-slides
    Those articles are not really explaining your use case, but somehow they are linked with what you want, that is just my intuition.

  • Rating Scale:  Likert Question

    Hi
    I've been able to change the options available, and even delete options I don't want included in the scale.
    Why does a number appear in the scale?
    E.G.  My options are:
    Most prefer
    Somewhat prefer
    Neutral
    But when I look at the quiz slide, it's become:
    1. Most prefer
    2. Somewhat prefer
    3. Neutral
    I don't want the numbers at all, or if I need it for scoring in the LMS, I don't want the numbers displayed on the slide.  I can't see where to turn this off or on.
    Can someone help?
    Thanks
    Anita

    The rating scale can't support multiple selections per row. You would have to use the multiple choice field (though its not a table layout).
    We do support multiple fields on one line now. This post explains:
    http://forums.adobe.com/thread/1144130
    Randy

  • View rating scale (Likert) responses

    Hello all,
    I'm trying to add a rating scale to a Captivate 3 project and have the results emailed to me.  My problem is I cannot figure out how to have the actual responses sent.  When I set it up, the email created only has the following (note: the numbers on the second line are all "0", not "U"):
    There are only two questions in the survey and in this example I answered the first as "2" and the other as "5".
    Does anyone know how to have the results emailed?
    Thanks,
    Matt

    Hi there
    Wow, most folks pop in to ask about one feature that doesn't seem to work as advertised. But you have a double feature! Kudos.
    Please review the link below. I believe both of your questions are answered there.
    Click here to view
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • RESOLVED: CWB: Where do we attach a Performance Rating Scale?

    Hi,
    I can't quite fiture out in which screen we attach a performance rating scale name to a CWB program o Plan.
    In other workds, how does CWB know which Performance Rating scale to use?
    Please clarify .. I've searched in the Implementation guide, viewed the sample setup documents but no luck.
    Thanks.
    Edited by: user13258089 on Dec 17, 2010 7:07 PM

    Lookup type = PERFORMANCE_RATING
    Performance Appraisals does not use this lookup but uses rating scale.

  • Rating Scale in PM

    my existing rating scale that was define last year had 9 levels now i want to add one more level in and make it 10 but when i am trying to do so on the
    Career Management >Rating Scale window
    system gives me the following error:
    APP-PAY-51480: You cannot add/delete a level that is used as a general rating scale for a competence.
    plz help?

    avajain thanx.
    Just want to get little more clarification, there is a file that has been given to us and the user wants me to upload the Overall Rating into the system for all employees from year 2009 to end of 2010 so plz i beg you if some one can really help me with this as i am totally confused, don't know how to load the Overall Rating for each employee?
    plz help!
    Edited by: 594647 on Dec 6, 2010 1:53 PM

  • Performance Appraisal Rating Scale.

    Hi Friends ,
    Want to know that is there any  place where we can define the year relevance for the Rating Scales and Rating scale text ? My client want some changes in  Rating scale text for 2010 Appraisal and this changes should not effect previous appraisal document. I know oohap_value_type  is for Rating scale.
    Your valuable response would be appreaciated.
    Rgds

    Hi SP,
    Once u define your Rating scale in SPRO->PM->PD->Appraisal systems-> Define Scales, goto your appraisal template using transaction code PHAP_catalog_pa or OOAM.
    At the category level, goto tab Value List and select the newly defined rating scale.
    Now the new rating scale will also be available for you to use for elements in the appraisal template
    Thanks!
    Regards,
    Chetan

  • Rating scales

    How do I construct a rating scale with a statment (question) on the left hand side and the right hand side of the range i.e. two statements that I am asking people to evaluate and agree with

    You are right, we do not support that type of rating scale but you can add or vote on that as a feature ideahere:
    http://forums.adobe.com/community/formscentral?view=idea
    If you need to add a new idea click "Create an idea" under "Actions" in the top right.
    Thanks,
    Josh

  • Rating scale and text

    I am using the rating scale and want to include a text field for additional information.  Ideally I'd like the scale with the text field to the right but otherwise it could go underneath.  However, I don't want to have to keep repeating the scale.  Any ideas on whether this is possible or if there is a work around?

    Hi;
    I am guessing you would like to add additional information to each of the questions in your ratings scale right?  Assuming that is the case, we don't really have a work-around, I think you'd have to create a Rating Scale field followed by a multi-line text field and then copy and paste and modify that for each of your questions.  Let me know if I didn't understand fully and feel free to add a feature idea to our ideas page:
    http://forums.adobe.com/community/formscentral?view=idea
    If you need to add a new idea click "Create an idea" under "Actions" in the top right.
    Thanks,
    Josh

  • Rating scale

    Is there a way to add a text field to the right of a rating scale for users to add comments? 

    Hi,
    Sorry, this is not currently supported in the Rating Scale field in FormsCentral.
    Thanks,
    Lucia

Maybe you are looking for

  • How do I put a pdf flyer in the body of a message?

    Several times a month I send out a group message. Before I attached a pdf file which is a flyer with the info. I would like to send the email with the flyer right there in the body of the message (not as an attachment). Haven't had any luck so far an

  • Dynamic columns

    Hello, we have several possibilities to show dynamic rows (table, row repeater, multi pane), is there any possibility to achieve this for dynamic columns? I have a table with two columns: - TEXT - VALUE I want to show this table in ONE line, is there

  • Back, History link on Page Title Bar

    Hi guys, Is it possible to - move these links (Back, History, <Icons>) from the right side to the left side? - change their appearance from links into buttons? Thanks In Advance!

  • Expert Advice Needed on SSO and 9iAS

    Hi All, At work we are thinking of using Single-Sign-On for authentication of all our intranet Applications. We have used Oracle Portal which has SSO, but we don't really need Portal. What I need to know is: Does Oracle 9iAS contain SSO? Do I need a

  • High Dynamic Range Photos

    What are the procedures to produce High Dynamic Range photos in Photoshop CS6?