<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to add score for each question in a Sruvey123 quiz? in ArcGIS Survey123 Questions</title>
    <link>https://community.esri.com/t5/arcgis-survey123-questions/how-to-add-score-for-each-question-in-a-sruvey123/m-p/1306169#M50469</link>
    <description>&lt;P&gt;Your IF statement will go into the calculate column.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;For example, the first two questions, plus the final SUM, could look something like this:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="abureaux_1-1688653756820.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/74908i481A8E2E26378F2A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="abureaux_1-1688653756820.png" alt="abureaux_1-1688653756820.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Here is what it would look like in the form:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="abureaux_4-1688653874404.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/74912iE63BCA8F96980490/image-size/medium?v=v2&amp;amp;px=400" role="button" title="abureaux_4-1688653874404.png" alt="abureaux_4-1688653874404.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;And this would be what the hidden fields look like:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="abureaux_3-1688653854786.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/74911i1C069D8785F60566/image-size/medium?v=v2&amp;amp;px=400" role="button" title="abureaux_3-1688653854786.png" alt="abureaux_3-1688653854786.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 06 Jul 2023 14:31:22 GMT</pubDate>
    <dc:creator>abureaux</dc:creator>
    <dc:date>2023-07-06T14:31:22Z</dc:date>
    <item>
      <title>How to add score for each question in a Sruvey123 quiz?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-to-add-score-for-each-question-in-a-sruvey123/m-p/1305488#M50421</link>
      <description>&lt;P&gt;i have created a multiple choice quiz using survey123 connect and then currently managing it on survey 123 website. Each question has 4 choices through which the user can switch through even after finding the correct answer. I want to show the user the score he has for each question. It should be the correct answer over the total number of attempts he made for each question. and then finally at the end i want to show an aggregated score for the whole quiz.&lt;/P&gt;&lt;P&gt;Here is how a single question is made in the excel sheet:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RehanChaudhary_0-1688453346073.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/74756iD00E30160A9A9F62/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RehanChaudhary_0-1688453346073.png" alt="RehanChaudhary_0-1688453346073.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What's the best way to implement this? In the end i want to show score for each question and a total score for the whole quiz&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jul 2023 06:50:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-to-add-score-for-each-question-in-a-sruvey123/m-p/1305488#M50421</guid>
      <dc:creator>RehanChaudhary</dc:creator>
      <dc:date>2023-07-04T06:50:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to add score for each question in a Sruvey123 quiz?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-to-add-score-for-each-question-in-a-sruvey123/m-p/1305619#M50436</link>
      <description>&lt;P&gt;Unless there is a JS solution I am unaware of (not unlikely), S123 doesn't keep a record of how many times a choice is selected. As a result, what you described above isn't directly possible.&amp;nbsp;&lt;/P&gt;&lt;P&gt;A possible workaround could look something like this though:&lt;/P&gt;&lt;P&gt;Toss a&amp;nbsp;&lt;EM&gt;calculate&lt;/EM&gt; after each select_one question to find their score. The calculate's contents depend on how you set up your form, but could look something like: &lt;STRONG&gt;if(selected${question_1},'B'),4,0)&lt;/STRONG&gt; so if they answer "B", they get 4 points; otherwise, they get 0&lt;/P&gt;&lt;P&gt;Then you would simply have a final calculate to add up all the other calculates for a final score. Don't forget to set &lt;EM&gt;bind::type&lt;/EM&gt; to&amp;nbsp;&lt;EM&gt;decimal&amp;nbsp;&lt;/EM&gt;for all of the calculates.&lt;/P&gt;&lt;P&gt;Then, just allow them to take the quiz as many times as it takes for them to get 100% (since that seems to be the end goal?)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jul 2023 21:22:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-to-add-score-for-each-question-in-a-sruvey123/m-p/1305619#M50436</guid>
      <dc:creator>abureaux</dc:creator>
      <dc:date>2023-07-04T21:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to add score for each question in a Sruvey123 quiz?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-to-add-score-for-each-question-in-a-sruvey123/m-p/1306049#M50456</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/454586"&gt;@abureaux&lt;/a&gt;&amp;nbsp;thanks for suggesting the workaround. In which column should i put my if condition? and how should i manage the 100% score if i had to use that as a end goal. could you please clarify these things?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jul 2023 07:44:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-to-add-score-for-each-question-in-a-sruvey123/m-p/1306049#M50456</guid>
      <dc:creator>RehanChaudhary</dc:creator>
      <dc:date>2023-07-06T07:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to add score for each question in a Sruvey123 quiz?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-to-add-score-for-each-question-in-a-sruvey123/m-p/1306169#M50469</link>
      <description>&lt;P&gt;Your IF statement will go into the calculate column.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;For example, the first two questions, plus the final SUM, could look something like this:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="abureaux_1-1688653756820.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/74908i481A8E2E26378F2A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="abureaux_1-1688653756820.png" alt="abureaux_1-1688653756820.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Here is what it would look like in the form:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="abureaux_4-1688653874404.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/74912iE63BCA8F96980490/image-size/medium?v=v2&amp;amp;px=400" role="button" title="abureaux_4-1688653874404.png" alt="abureaux_4-1688653874404.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;And this would be what the hidden fields look like:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="abureaux_3-1688653854786.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/74911i1C069D8785F60566/image-size/medium?v=v2&amp;amp;px=400" role="button" title="abureaux_3-1688653854786.png" alt="abureaux_3-1688653854786.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jul 2023 14:31:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-to-add-score-for-each-question-in-a-sruvey123/m-p/1306169#M50469</guid>
      <dc:creator>abureaux</dc:creator>
      <dc:date>2023-07-06T14:31:22Z</dc:date>
    </item>
  </channel>
</rss>

