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

Similar Messages

  • How to define a new Rating Scale Lookup Type?

    Hi
    I want to define a new Rating Scale with Type 'Achievement' in the rating scales. But the Application Utilities Lookup RATING_SCALE_TYPE's Access-Level is System. So I can't add a new type. Is it possible to add a new Type?
    Regards
    Rahman

    I do not think that is possible because the total value of the items must equal the value at header.
    You can maybe add an extra text item for these costs if you do not want them added to the other items.

  • Set Default Opening Application for a certain type of file?

    I need some help saving time! I have lots of .groovy files that my apple doesn't know how to open and i have to select a default opening application for every single file! Is there a way to do this for multiple files or for a certain file type? thanks!
    amber

    Sure. Click on a file, and then go to File-Get Info (or CMD-I) In the box that pops open, choose the app you want the .groovy files to open with, and click change all. That should do it.

  • Rating Scale is not Showing Up in Predefined PMP

    Hi All,
    I am new to This Performance Management Configuration, so far i resolved few issues with help of SDN.
    Now i am configuring Predefined Performance Management Templates, when i was configuring i have to assign/attache rating scale to goals.
    I configured my OWN Rating Scale using this transaction code: OOHAP_VALUE_TYPE based on my client requirement to attach to goals, but i am not able to see my OWN rating scale in the drop down but i am able to see only default rating scale which was provided by SAP.
    Can you someone please tell me do i need to configure any thing more to see my own rating scale to attache Predefined Performance Management templates.
    Thanks in advance.
    -Abhi

    Solved by Myself

  • 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

  • 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 do I set up a rating scale so that respondents can only select each option one time?

    How do I set up a rating scale so that respondents can only select each option one time?

    hi there,
    in the LV VI, function & how-to help open the item
    Building the front panel -> Front panels controls and indicators -> Array & Cluster controls and indicators -> Arrays -> Tabbing through Elements of an Array or Cluster
    or see attachment
    Best regards
    chris
    CL(A)Dly bending G-Force with LabVIEW
    famous last words: "oh my god, it is full of stars!"
    Attachments:
    TabbingThroughArrays_Help.jpg ‏96 KB

  • 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

  • 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...

  • 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

  • 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 Issues

    Once an option is clicked in a rating scale it can't be unclicked. Does anyone know of a way to set up the scale so that a contributor can change their mind and unclick?

    There isn't a way to de-select, another rating can be selected instead but a selected row cannot be cleared.  The only way currently would be to go to the URL again starting over.
    Thanks,
    Josh

  • Error in script to set album rating in iTunes

    Hi
    I used to use the following script to set album ratings of albums in my iTunes library.  It used to work fine, but now it's not working.  When I try to debug it I am getting the following error:
    "Scripting component error."
    on this line in the third block:
    repeat with R in (rating of tracks whose album is thisAlbum)
    I wonder if anyone can spot what the problem might be?
    Thanks,
    Nick
      --Make a list of all the selected albums:
              set theAlbums to {}
              set theAlbumsRef to a reference to theAlbums
              set tempList to album of selection
              set thePreviousTitle to ""
              repeat with thisTitle in tempList
                        set thisTitle to thisTitle as text
                        if thisTitle is not thePreviousTitle then
                                  copy thisTitle to the end of theAlbumsRef
                                  set thePreviousTitle to thisTitle
                        end if
              end repeat
              set numberOfAlbums to count theAlbums
      --Make a list containing one track for each selected album:
              set theTracks to {}
              set theTracksRef to a reference to theTracks
              repeat with thisAlbum in theAlbums
                        copy (track 1 whose album is thisAlbum) to the end of theTracksRef
              end repeat
      --Set the album rating of each album contained in the selection:
              set theRatings to ""
              set k to 0
              repeat with thisTrack in theTracks
                        set k to k + 1
                        if k mod 25 = 0 then beep 1 -- for audio feedback
                        set thisAlbum to item k of theAlbums
                        set numberOfTracks to 0
                        repeat with k from 1 to (disc count of thisTrack)
                                  try
                                            get (track count of track 1 whose (album is thisAlbum) and (disc number is k))
                                            set numberOfTracks to numberOfTracks + result
                                  end try
                        end repeat
                        set songRating to 0
                        repeat with R in (rating of tracks whose album is thisAlbum)
                                  if R > 80 then set R to 80
                                  set songRating to songRating + R
                        end repeat
                        set thisRating to round (songRating / numberOfTracks)
                        set album rating of thisTrack to thisRating
                        set theRatings to theRatings & (album artist of thisTrack & tab & thisAlbum & tab & (thisRating as text) & return)
              end repeat
              display dialog "The album “" & thisAlbum & "” has a rating of " & thisRating with icon 1 buttons {"OK"} default button 1
    end tell

    problems like this are usually solvable by splitting up the line.  It doesn't look like it, but there's a whole lot going on in that compound statement. try:
    tell application "iTunes"
              set ratingList to (rating of tracks whose album is thisAlbum)
              repeat with R in ratingList
                        if R > 80 then set R to 80
                        set songRating to songRating + R
              end repeat
    end tell

  • Appraisals - Value list/Rating scales problem

    I assign the rating scale/value list to a template. I face a problem. I have defined a 5 scale rating. Its working fine in R/3 side. But when I go to ESS/MSS, an extra 'Select a Value' comes as default. I do not want this default. Is there any way, I can remove it or change its description. This is coming even if I make the value required.
    Also, I want to change the standard description of the value. So I went to 'Value Description' tab in the template. But it is greyed out. How can I make it open for entry?

    >
    Michael L Pappis wrote:
    > FS,
    >
    > I've also worked through some problems on the value list display in EP4.  Before even resolving your issue, I would strongly urge you to implement the following notes:
    >
    > 0001412852
    > 0001447316
    > 0001450122
    >
    > regarding changing the descriptions of the value list - go to phap_catalog (refresh it new, dont click on any templates), immediately navigate to go-to -> value list.  Here you can define your value list and change descriptions.  Typically you don't modified the sap value list, create your own. 
    >
    > you also need to cateogrize your value list, go back to phap_catalog - navigate to go-to -> basic settings.  Create your value with same value reference # in the qualitative class. 
    >
    > Now, regarding how to make "select a value" disappear, trying configuring an value ID of 0  in your value list- with whatever description you want. 
    >
    > see what effect that has - only after implementing the 3 notes.
    Michael - I am reading this note "  > you also need to cateogrize your value list, go back to phap_catalog - navigate to go-to -> basic settings.  Create your value with same value reference # in the qualitative class.  "   and I am confused.  Are you saying to create the same list under more than one ValueClass ? 
    I am struggling with a Yes, No, N/A value list  having the 'No Value' included in the dropdown. 
    Hope you are having a terrific day!

  • 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

Maybe you are looking for

  • How do I know if my iPhone 4s has been unlocked illegally without actually restoring it?

    Hello everyone I purchased an iPhone 4s from Thailand, they told me that it was a factory unlocked version. I could even run my Vodafone India SIM in it there. After coming back to India, I wanted to update my iOS to the latest version but was afraid

  • Issue loading Meta Data for IDoc Type WPUKSR01 in XI Integration Repository

    Hi, I want to load the Meta Data for IDoc Type WPUKSR01 in XI Integration Repository out of BI. Unfortunately, this IDoc is not available in the IDoc List. I checked in BI and the IDoc Type is available in WE60 and WE30. Also, I can load the Meta Dat

  • Duplicating clip within frame

    I'm not sure what you call this, but I've done it in the past and can't for the life of me remember how the heck I did it. I want to take one clip - 10 seconds in length and place it 4x across and 4x down so it looks like you're watching 16 clips - b

  • Link to August PDK newsletter is broken

    See page http://portalstudio.oracle.com/servlet/page?_pageid=356&_dad=ops&_schema=OPSTUDIO when you click on the August newsletter link, all you get is: Error: document not found.

  • Can I hide tree disclose button basing on node.attr?

    Hi OTN, I have an af:treeTable with dynamic node levels. It is not determined how many levels there are, but basing on node attribute I can find out weather the node is a leaf. So I would like to hide disclose triangle button for those nodes that hav