<?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: Creating a Change Calculation based on SD's per month within a customised time frame. in Reporting Service &amp; Alerting</title>
    <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Creating-a-Change-Calculation-based-on-SD-s-per-month-within-a/m-p/2099475#M590</link>
    <description>&lt;P&gt;Creating a change calculation based on standard deviations (SDs) per month within a customized time frame involves using statistical analysis to track the changes in a dataset over time. The goal is to determine how much the data deviates from the mean (average) and quantify these deviations using standard deviations. Here's a step-by-step guide to creating such a calculation:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step 1: Data Collection:&lt;/STRONG&gt; Gather the dataset that you want to analyze. This dataset should include data points collected at regular intervals (e.g., daily, weekly, or monthly) over your desired time frame.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Reporting-Service/" target="_self"&gt;https://community.qlik.com/t5/Reporting-Service/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://ipayhourlycalculator.com/" target="_self"&gt;https://ipayhourlycalculator.com/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step 2: Calculate the Mean and Standard Deviation:&lt;/STRONG&gt; Calculate the mean (average) and standard deviation of the dataset. The mean represents the central tendency of the data, while the standard deviation measures the variability or spread of the data points around the mean.&lt;/P&gt;</description>
    <pubDate>Wed, 02 Aug 2023 11:11:10 GMT</pubDate>
    <dc:creator>serives4</dc:creator>
    <dc:date>2023-08-02T11:11:10Z</dc:date>
    <item>
      <title>Creating a Change Calculation based on SD's per month within a customised time frame.</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Creating-a-Change-Calculation-based-on-SD-s-per-month-within-a/m-p/2099336#M588</link>
      <description>&lt;P&gt;I have a set of sales data that spans over a year. I want to be able to calculate the sum of change sales per month.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example, say I selected a date range of 01 Feb 2023 - 30 Apr 2023 using my filter pane.&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Feb sales were: 21, mar was: 22 and Apr was: 25 then the total change would be 4. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;i.e. 22-21 = 1 and 25 - 22 = 3, 3+1 = 4&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;How do I create a query like this?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Aug 2023 03:15:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Creating-a-Change-Calculation-based-on-SD-s-per-month-within-a/m-p/2099336#M588</guid>
      <dc:creator>lnn</dc:creator>
      <dc:date>2023-08-02T03:15:51Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Change Calculation based on SD's per month within a customised time frame.</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Creating-a-Change-Calculation-based-on-SD-s-per-month-within-a/m-p/2099342#M589</link>
      <description>&lt;P&gt;hi, try this code in script.&lt;/P&gt;
&lt;P&gt;SalesData:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;Date, Sales&lt;BR /&gt;2023-01-01, 20&lt;BR /&gt;2023-02-01, 21&lt;BR /&gt;2023-03-01, 22&lt;BR /&gt;2023-04-01, 25&lt;BR /&gt;2023-05-01, 30&lt;BR /&gt;2023-06-01, 35&lt;BR /&gt;2023-07-01, 28&lt;BR /&gt;2023-08-01, 32&lt;BR /&gt;2023-09-01, 34&lt;BR /&gt;2023-10-01, 36&lt;BR /&gt;2023-11-01, 40&lt;BR /&gt;2023-12-01, 38&lt;BR /&gt;];&lt;/P&gt;
&lt;P&gt;ChangeData:&lt;BR /&gt;LOAD&lt;BR /&gt;Date(MonthStart(Date)) AS MonthYear,&lt;BR /&gt;Sales - Previous(Sales) AS SalesChange&lt;BR /&gt;Resident&lt;BR /&gt;SalesData&lt;BR /&gt;Order By&lt;BR /&gt;Date;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="cristianj23a_0-1690947833849.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/113398i0D4B2635513FA329/image-size/medium?v=v2&amp;amp;px=400" role="button" title="cristianj23a_0-1690947833849.png" alt="cristianj23a_0-1690947833849.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regarts.&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>Wed, 02 Aug 2023 03:45:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Creating-a-Change-Calculation-based-on-SD-s-per-month-within-a/m-p/2099342#M589</guid>
      <dc:creator>cristianj23a</dc:creator>
      <dc:date>2023-08-02T03:45:04Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Change Calculation based on SD's per month within a customised time frame.</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Creating-a-Change-Calculation-based-on-SD-s-per-month-within-a/m-p/2099475#M590</link>
      <description>&lt;P&gt;Creating a change calculation based on standard deviations (SDs) per month within a customized time frame involves using statistical analysis to track the changes in a dataset over time. The goal is to determine how much the data deviates from the mean (average) and quantify these deviations using standard deviations. Here's a step-by-step guide to creating such a calculation:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step 1: Data Collection:&lt;/STRONG&gt; Gather the dataset that you want to analyze. This dataset should include data points collected at regular intervals (e.g., daily, weekly, or monthly) over your desired time frame.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Reporting-Service/" target="_self"&gt;https://community.qlik.com/t5/Reporting-Service/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://ipayhourlycalculator.com/" target="_self"&gt;https://ipayhourlycalculator.com/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step 2: Calculate the Mean and Standard Deviation:&lt;/STRONG&gt; Calculate the mean (average) and standard deviation of the dataset. The mean represents the central tendency of the data, while the standard deviation measures the variability or spread of the data points around the mean.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Aug 2023 11:11:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Creating-a-Change-Calculation-based-on-SD-s-per-month-within-a/m-p/2099475#M590</guid>
      <dc:creator>serives4</dc:creator>
      <dc:date>2023-08-02T11:11:10Z</dc:date>
    </item>
  </channel>
</rss>

