<?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>question Re: How to calculate average survey rating per assessment in Developer forum</title>
    <link>https://www.servicenow.com/community/developer-forum/how-to-calculate-average-survey-rating-per-assessment/m-p/3371057#M1226156</link>
    <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/481211"&gt;@SwathiBanda&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To display the assessment results grouped by survey, you can create a data visualization or report on&amp;nbsp;&lt;/P&gt;&lt;P&gt;'asmt_assessment_instance_question' table filtered by category&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bhuvan_4-1757038396571.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/467528iCC97195514EC0CC0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bhuvan_4-1757038396571.png" alt="Bhuvan_4-1757038396571.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bhuvan_3-1757038297196.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/467527i7F27B4E0B9EB8914/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bhuvan_3-1757038297196.png" alt="Bhuvan_3-1757038297196.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;If you want to get an average of 4 questions and answer from 5th question, there are couple of options,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Create a new field in&amp;nbsp;asmt_assessment_instance table and create a Business Rule to calculate the average value of 4 questions using gliderecord and store it. In report/data visualization, you can use the aggregated field and question 5 field to show the results&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. Create a database view table with correct where clause to merge tables and create a new field on the view table that calculates the average of 4 questions. Create a report or data visualization on database view table and show the results&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this helped to answer your query, please mark it helpful &amp;amp; accept the solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Bhuvan&lt;/P&gt;</description>
    <pubDate>Fri, 05 Sep 2025 02:21:29 GMT</pubDate>
    <dc:creator>Bhuvan</dc:creator>
    <dc:date>2025-09-05T02:21:29Z</dc:date>
    <item>
      <title>How to calculate average survey rating per assessment</title>
      <link>https://www.servicenow.com/community/developer-forum/how-to-calculate-average-survey-rating-per-assessment/m-p/3371023#M1226149</link>
      <description>&lt;P&gt;I’ve created a survey in ServiceNow for &lt;STRONG&gt;Incidents&lt;/STRONG&gt; with 5 questions:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Questions 1–4 are rating type (scale 1 to 5).&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Question 5 is free-text (comments).&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;What I want is:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Calculate the &lt;STRONG&gt;average of Questions 1–4&lt;/STRONG&gt;,&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Also include the free-text comment from Question 5.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;Survey Instance Q1 Q2 Q3 Q4 Avg Score Comments &lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;SURV001&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;4.5&lt;/TD&gt;&lt;TD&gt;"Resolved quickly"&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;SURV002&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;2.25&lt;/TD&gt;&lt;TD&gt;"Took too long"&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;I understand the data is stored in &lt;STRONG&gt;asmt_metric_result&lt;/STRONG&gt; (individual answers) and &lt;STRONG&gt;asmt_assessment_instance&lt;/STRONG&gt; (survey instances), but I’m not sure how to:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Combine the responses so each survey instance is a single row,&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Calculate the average across just the first 4 rating questions,&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Include the comment (Q5) in the same row.&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Has anyone implemented this before?&lt;/P&gt;</description>
      <pubDate>Fri, 05 Sep 2025 00:34:00 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/how-to-calculate-average-survey-rating-per-assessment/m-p/3371023#M1226149</guid>
      <dc:creator>SwathiBanda</dc:creator>
      <dc:date>2025-09-05T00:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate average survey rating per assessment</title>
      <link>https://www.servicenow.com/community/developer-forum/how-to-calculate-average-survey-rating-per-assessment/m-p/3371040#M1226152</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/481211"&gt;@SwathiBanda&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Reporting/UI (No-Code Option)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;You can use a Performance Analytics / Report Source approach:&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Create a database view joining asmt_assessment_instance to asmt_metric_result.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Filter by your survey.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Use GROUPBY on the instance.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Use aggregates for Q1–Q4 (AVG), and max/text aggregate for Q5 (the comment).&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;But the DB View needs you to know the metric definitions (questions) because they’re just rows in asmt_metric_result.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Sep 2025 01:31:57 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/how-to-calculate-average-survey-rating-per-assessment/m-p/3371040#M1226152</guid>
      <dc:creator>Rafael Batistot</dc:creator>
      <dc:date>2025-09-05T01:31:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate average survey rating per assessment</title>
      <link>https://www.servicenow.com/community/developer-forum/how-to-calculate-average-survey-rating-per-assessment/m-p/3371052#M1226155</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/481211"&gt;@SwathiBanda&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Create a database view between both tables and build a report on top of it. This way, you can retrieve the complete information available in both tables. Follow the steps below to join the two tables:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.servicenow.com/docs/bundle/xanadu-platform-administration/page/use/reporting/task/t_CreateADatabaseView.html" target="_blank"&gt;https://www.servicenow.com/docs/bundle/xanadu-platform-administration/page/use/reporting/task/t_CreateADatabaseView.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://medium.com/@saurabhdubey836/database-views-the-tale-of-joining-two-tables-8f16a5771b71" target="_blank"&gt;https://medium.com/@saurabhdubey836/database-views-the-tale-of-joining-two-tables-8f16a5771b71&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Pradeep&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Sep 2025 02:04:18 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/how-to-calculate-average-survey-rating-per-assessment/m-p/3371052#M1226155</guid>
      <dc:creator>Pradeep Thipani</dc:creator>
      <dc:date>2025-09-05T02:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate average survey rating per assessment</title>
      <link>https://www.servicenow.com/community/developer-forum/how-to-calculate-average-survey-rating-per-assessment/m-p/3371057#M1226156</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/481211"&gt;@SwathiBanda&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To display the assessment results grouped by survey, you can create a data visualization or report on&amp;nbsp;&lt;/P&gt;&lt;P&gt;'asmt_assessment_instance_question' table filtered by category&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bhuvan_4-1757038396571.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/467528iCC97195514EC0CC0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bhuvan_4-1757038396571.png" alt="Bhuvan_4-1757038396571.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bhuvan_3-1757038297196.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/467527i7F27B4E0B9EB8914/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bhuvan_3-1757038297196.png" alt="Bhuvan_3-1757038297196.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;If you want to get an average of 4 questions and answer from 5th question, there are couple of options,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Create a new field in&amp;nbsp;asmt_assessment_instance table and create a Business Rule to calculate the average value of 4 questions using gliderecord and store it. In report/data visualization, you can use the aggregated field and question 5 field to show the results&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. Create a database view table with correct where clause to merge tables and create a new field on the view table that calculates the average of 4 questions. Create a report or data visualization on database view table and show the results&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this helped to answer your query, please mark it helpful &amp;amp; accept the solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Bhuvan&lt;/P&gt;</description>
      <pubDate>Fri, 05 Sep 2025 02:21:29 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/how-to-calculate-average-survey-rating-per-assessment/m-p/3371057#M1226156</guid>
      <dc:creator>Bhuvan</dc:creator>
      <dc:date>2025-09-05T02:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate average survey rating per assessment</title>
      <link>https://www.servicenow.com/community/developer-forum/how-to-calculate-average-survey-rating-per-assessment/m-p/3372351#M1226466</link>
      <description>&lt;P&gt;I was able to create the database view by joining &lt;STRONG&gt;asmt_assessment_instance&lt;/STRONG&gt; with multiple aliases of &lt;STRONG&gt;asmt_metric_result&lt;/STRONG&gt; for each survey question (Q1–Q5 and Comments). That part works fine.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;where should I create the new “Average” field?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;When I open the database view itself, I only see the &lt;STRONG&gt;View Tables&lt;/STRONG&gt; related list (to define joins). I don’t see an option to “create a new field” directly on the database view table.&lt;/P&gt;</description>
      <pubDate>Sat, 06 Sep 2025 17:43:10 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/how-to-calculate-average-survey-rating-per-assessment/m-p/3372351#M1226466</guid>
      <dc:creator>SwathiBanda</dc:creator>
      <dc:date>2025-09-06T17:43:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate average survey rating per assessment</title>
      <link>https://www.servicenow.com/community/developer-forum/how-to-calculate-average-survey-rating-per-assessment/m-p/3372352#M1226467</link>
      <description>&lt;P&gt;I was able to create the database view by joining&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;asmt_assessment_instance&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;with multiple aliases of&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;asmt_metric_result&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;for each survey question (Q1–Q5 and Comments). That part works fine.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;where should I create the new “Average” field?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;When I open the database view itself, I only see the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;View Tables&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;related list (to define joins). I don’t see an option to “create a new field” directly on the database view table.&lt;/P&gt;</description>
      <pubDate>Sat, 06 Sep 2025 17:54:46 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/how-to-calculate-average-survey-rating-per-assessment/m-p/3372352#M1226467</guid>
      <dc:creator>SwathiBanda</dc:creator>
      <dc:date>2025-09-06T17:54:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate average survey rating per assessment</title>
      <link>https://www.servicenow.com/community/developer-forum/how-to-calculate-average-survey-rating-per-assessment/m-p/3372404#M1226478</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/481211"&gt;@SwathiBanda&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Go to System Definition -&amp;gt; Database Views and open the database view created&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bhuvan_0-1757198258106.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/467873i994323152178DEC7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bhuvan_0-1757198258106.png" alt="Bhuvan_0-1757198258106.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Configure -&amp;gt; Table&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bhuvan_1-1757198398217.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/467874i3BC239ECBD2B6B81/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bhuvan_1-1757198398217.png" alt="Bhuvan_1-1757198398217.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Add a new field for database view table similar to creation of new field for table&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bhuvan_2-1757198545999.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/467875iB8263D9C3ACC86ED/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bhuvan_2-1757198545999.png" alt="Bhuvan_2-1757198545999.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bhuvan_3-1757198597174.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/467876i80B321FB50DA5F33/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bhuvan_3-1757198597174.png" alt="Bhuvan_3-1757198597174.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;As per community guidelines, you can accept more than one answer as accepted solution. If my response helped to answer your query, please mark it helpful &amp;amp; accept the solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Bhuvan&lt;/P&gt;</description>
      <pubDate>Sat, 06 Sep 2025 23:26:40 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/how-to-calculate-average-survey-rating-per-assessment/m-p/3372404#M1226478</guid>
      <dc:creator>Bhuvan</dc:creator>
      <dc:date>2025-09-06T23:26:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate average survey rating per assessment</title>
      <link>https://www.servicenow.com/community/developer-forum/how-to-calculate-average-survey-rating-per-assessment/m-p/3372416#M1226479</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/481211"&gt;@SwathiBanda&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For your requirement, create a new field in 'asmt_assessment_instance' table and create a Business Rule that would calculate sum of values of 'asmt_assessment_instance_question' using relation&amp;nbsp;asmt_instance.number =&amp;nbsp;asmt_instance_question.instance&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, below is an assessment instance and has 6 question as part of assessment survey,&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bhuvan_0-1757205682820.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/467877i695B5480D306D499/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bhuvan_0-1757205682820.png" alt="Bhuvan_0-1757205682820.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;To calculate the sum of values, you can create a BR like below and set value of new field with the count and in turn use it in view tables for reports and dashboards&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bhuvan_0-1757206921813.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/467882i46C13D78961BB9B4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bhuvan_0-1757206921813.png" alt="Bhuvan_0-1757206921813.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bhuvan_1-1757206938059.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/467883i117B68B7944CFC51/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bhuvan_1-1757206938059.png" alt="Bhuvan_1-1757206938059.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var count=0;
var je = new GlideRecord('asmt_assessment_instance_question');
je.addQuery("instance",'982a2c44d7211100158ba6859e6103a4');
je.query();
while (je.next()) 
{
count+=je.value;
}
gs.print(count);&lt;/LI-CODE&gt;&lt;P&gt;If you want to filter the assessment values and calculate count for specific questions only, add a query to exclude. Below is a sample,&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bhuvan_2-1757207013451.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/467884iDB419A98D4471B5D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bhuvan_2-1757207013451.png" alt="Bhuvan_2-1757207013451.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bhuvan_3-1757207027942.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/467885i3C7028EFEC391086/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bhuvan_3-1757207027942.png" alt="Bhuvan_3-1757207027942.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;This is only for reference as you can do similar function using calculated fields and GlideAggregate using SUM aggregation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As per community guidelines, you can accept more than one answer as accepted solution. If my response helped to answer your query, please mark it helpful &amp;amp; accept the solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Bhuvan&lt;/P&gt;</description>
      <pubDate>Sun, 07 Sep 2025 01:04:00 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/how-to-calculate-average-survey-rating-per-assessment/m-p/3372416#M1226479</guid>
      <dc:creator>Bhuvan</dc:creator>
      <dc:date>2025-09-07T01:04:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate average survey rating per assessment</title>
      <link>https://www.servicenow.com/community/developer-forum/how-to-calculate-average-survey-rating-per-assessment/m-p/3372741#M1226544</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/481211"&gt;@SwathiBanda&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did you get a chance to review this ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As per community guidelines, you can accept more than one answer as accepted solution. If my responses helped to answer your query, please mark it helpful &amp;amp; accept the solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Bhuvan&lt;/P&gt;</description>
      <pubDate>Mon, 08 Sep 2025 05:30:49 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/how-to-calculate-average-survey-rating-per-assessment/m-p/3372741#M1226544</guid>
      <dc:creator>Bhuvan</dc:creator>
      <dc:date>2025-09-08T05:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate average survey rating per assessment</title>
      <link>https://www.servicenow.com/community/developer-forum/how-to-calculate-average-survey-rating-per-assessment/m-p/3373310#M1226676</link>
      <description>&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 08 Sep 2025 13:01:52 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/how-to-calculate-average-survey-rating-per-assessment/m-p/3373310#M1226676</guid>
      <dc:creator>SwathiBanda</dc:creator>
      <dc:date>2025-09-08T13:01:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate average survey rating per assessment</title>
      <link>https://www.servicenow.com/community/developer-forum/how-to-calculate-average-survey-rating-per-assessment/m-p/3373339#M1226685</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/481211"&gt;@SwathiBanda&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Glad to know it helped you !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Bhuvan&lt;/P&gt;</description>
      <pubDate>Mon, 08 Sep 2025 13:17:51 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/how-to-calculate-average-survey-rating-per-assessment/m-p/3373339#M1226685</guid>
      <dc:creator>Bhuvan</dc:creator>
      <dc:date>2025-09-08T13:17:51Z</dc:date>
    </item>
  </channel>
</rss>

