<?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: Equivalent to Variance Function? in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219873#M6316</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So I'd have to add this to my load script? And if that's the case, how would I go about doing it on a column?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Jan 2017 23:05:46 GMT</pubDate>
    <dc:creator>michael_andrews</dc:creator>
    <dc:date>2017-01-23T23:05:46Z</dc:date>
    <item>
      <title>Equivalent to Variance Function?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219871#M6314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm wondering if there is some sort of equivalent to the variance sql function? I.e., a way for me to get 1.66 from this data as you would if you ran this sql&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE TABLE #foo(f_val int)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT INTO #foo VALUES(1), (2), (3), (4)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT var(f_val) FROM #foo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2017 22:46:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219871#M6314</guid>
      <dc:creator>michael_andrews</dc:creator>
      <dc:date>2017-01-23T22:46:48Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent to Variance Function?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219872#M6315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;STRONG&gt;Sqr(Stdev(Val)) as Var;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;Val&lt;/P&gt;&lt;P&gt;1&lt;/P&gt;&lt;P&gt;2&lt;/P&gt;&lt;P&gt;3&lt;/P&gt;&lt;P&gt;4&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2017 23:04:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219872#M6315</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2017-01-23T23:04:29Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent to Variance Function?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219873#M6316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So I'd have to add this to my load script? And if that's the case, how would I go about doing it on a column?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2017 23:05:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219873#M6316</guid>
      <dc:creator>michael_andrews</dc:creator>
      <dc:date>2017-01-23T23:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent to Variance Function?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219874#M6317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Calculating a variance is like applying an aggregation function to a set of field values / records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to calculate a variance &lt;EM&gt;per some key, &lt;/EM&gt;you would need to use a group by clause, just like you would if you want to Sum() or Average() your values. &lt;/P&gt;&lt;P&gt;In above sample, I haven't used another field to group by, so I don't need the group by clause (just like in your SQL).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2017 23:09:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219874#M6317</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2017-01-23T23:09:37Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent to Variance Function?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219875#M6318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'll play with it some. I guess my bigger question was can I use that LOAD in the function of the measure, or do I have to add this aggregate thing as a new column in the data itself via the load script? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 13:57:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219875#M6318</guid>
      <dc:creator>michael_andrews</dc:creator>
      <dc:date>2017-01-24T13:57:23Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent to Variance Function?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219876#M6319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the same expression&lt;/P&gt;&lt;P&gt;=Sqr(Stdev( MEASUREFIELD))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as expression in a front end chart. Stdev() is a statistical aggregation function, hence you can use it same way you would use a Sum(), Avg() or Median().&lt;/P&gt;&lt;P&gt;Use one or more dimension(s) in your chart if you need to get your aggregate grouped by.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 14:11:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219876#M6319</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2017-01-24T14:11:19Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent to Variance Function?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219877#M6320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, wondering if I can pick your brain on something a little more specific towards this. So the final calculation I'm trying to get is the Alpha Reliability of exam questions. Here's the sql that we use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT @itemVarianceAvg = AVG(is_item_variance)&lt;/P&gt;&lt;P&gt;&amp;nbsp; FROM &lt;/P&gt;&lt;P&gt;&amp;nbsp; (&lt;/P&gt;&lt;P&gt;&amp;nbsp; SELECT VAR(i_item_score) AS is_item_variance&lt;/P&gt;&lt;P&gt;&amp;nbsp; , i_item_name&lt;/P&gt;&lt;P&gt;&amp;nbsp; FROM #items&lt;/P&gt;&lt;P&gt;&amp;nbsp; WHERE i_exam_form = @currentForm&lt;/P&gt;&lt;P&gt;&amp;nbsp; GROUP BY i_item_name&lt;/P&gt;&lt;P&gt;&amp;nbsp; ) AS S&lt;/P&gt;&lt;P&gt;&amp;nbsp; WHERE 1=1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So here, what we're basically saying is get the variance for each ItemScore Grouped by their name. To put it in context. People can take exams, each exam can have multiple items associated with it, but they will always have a unique name. So, we are getting all of the variances grouped by item, then averaging that. That is the @itemVarianceAvg&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now after that, we get this alpha reliability number by so&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; SELECT @tempNumeric = ((CAST(@tempInt AS float) / (CAST(@tempInt AS float) - 1))&lt;/P&gt;&lt;P&gt;&amp;nbsp; * (1 - ((@itemVarianceAvg*@tempInt) / POWER(@stDevScore, 2))));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First thing is you can assume I already know the @tempInt number. Also, I know the proper function for the @stDevScore, but I'm trying to wrap this all into one line and I'm not getting things right. Here's what I have is this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(Count(ItemMeasure)/Count(ExamMeasure) - (Count(ItemMeasure)/Count(ExamMeasure) - 1))&lt;/P&gt;&lt;P&gt;*(1-((Sqr(Stdev(ItemScore))*Count(ItemMeasure)/Count(ExamMeasure)))/pow(stdev(ExamScore),2))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, I read up on variables a little, but I'm confused on how I could define say the @tempInt variable, since I have to resuse the line &lt;SPAN style="font-size: 13.3333px;"&gt;Count(ItemMeasure)/Count(ExamMeasure) &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 15:06:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219877#M6320</guid>
      <dc:creator>michael_andrews</dc:creator>
      <dc:date>2017-01-24T15:06:04Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent to Variance Function?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219878#M6321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This leads away from the question how you can calculate variance in Qlik, but ok...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I understand your request correctly, you are basically missing the part:&lt;/P&gt;&lt;P&gt;"&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; get the variance for each ItemScore Grouped by their name. " And then average this list of values.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you already know how to do this in principle&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/247228"&gt;Average a Sum of Child Records&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Avg ( Aggr( Sqr(Stdev(&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;i_item_score )), &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;i_item_name))&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/2967"&gt;AGGR...&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/2980"&gt;When should the Aggr() function NOT be used?&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/3779"&gt;Use Aggregation Functions!&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/4418"&gt;Pitfalls of the Aggr function&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 15:28:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219878#M6321</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2017-01-24T15:28:15Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent to Variance Function?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219879#M6322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well yea, my original variance question was me breaking this larger problem down into smaller portions. I'll look at this and get back to you. thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 15:30:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219879#M6322</guid>
      <dc:creator>michael_andrews</dc:creator>
      <dc:date>2017-01-24T15:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent to Variance Function?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219880#M6323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey, thanks for your help, the Aggr chunk got me headed in the right direction. Is it possible to declare variables at all in that fx window? I got the calculation working, but I have to reuse a lot of the same calculations, and was wondering if I can create a local variable in that window, and just use it. This is it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(Count(ItemMeasure)/Count(ExamMeasure) / (Count(ItemMeasure)/Count(ExamMeasure) - 1)) *&lt;/P&gt;&lt;P&gt;(1-(((Avg(Aggr(Sqr(Stdev(ItemScore)), ItemName))) * (Count(ItemMeasure)/Count(ExamMeasure))) / (pow(stdev(ExamScore), 2))))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And so, for example, if there was a way for me to set &lt;SPAN style="font-size: 13.3333px;"&gt;Count(ItemMeasure)/Count(ExamMeasure)&lt;/SPAN&gt; to a variable named say, @count (or however I'd declare it), it'd be a lot cleaner&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;(@count / @count - 1)) *&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;(1-(((Avg(Aggr(Sqr(Stdev(ItemScore)), ItemName))) * @cunt) / (pow(stdev(ExamScore), 2))))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 21:43:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219880#M6323</guid>
      <dc:creator>michael_andrews</dc:creator>
      <dc:date>2017-01-24T21:43:06Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent to Variance Function?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219881#M6324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can define a variable (not in the expression window, but either in the script or in the variable overview in the UI).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, add to your script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET vCount = &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px; background-color: #f2f2f2;"&gt;Count(ItemMeasure)/Count(ExamMeasure)&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you can use the variable in your chart expressions:&lt;/P&gt;&lt;P&gt;=($(vCount)) / ($(vCount) - 1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/3406"&gt;The Magic of Variables&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/3444"&gt;The Magic of Dollar Expansions&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To get you up and started, I would recommend that you go through some free tutorials that Qlik offers&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/space/2146"&gt;New to Qlik Sense&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or since most of the language is shared with QlikView&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-7364"&gt;QlikView 11 Developer Tutorial&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or grab a good book&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-8898"&gt;Books and literature&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have fun!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 22:00:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219881#M6324</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2017-01-24T22:00:38Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent to Variance Function?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219882#M6325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is the variable in the UI an extension? I vaguely remember reading something about that. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 22:10:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219882#M6325</guid>
      <dc:creator>michael_andrews</dc:creator>
      <dc:date>2017-01-24T22:10:00Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent to Variance Function?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219883#M6326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, I don't think so. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to modify the variable in the UI as a user (accessing the app in the accesspoint), you need(ed?) an extension.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 22:18:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219883#M6326</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2017-01-24T22:18:37Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent to Variance Function?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219884#M6327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is the only variable thing I've ever known of, and we had to install it as an extension. &lt;A href="http://i.imgur.com/Asjc2yl.png" title="http://i.imgur.com/Asjc2yl.png"&gt;http://i.imgur.com/Asjc2yl.png&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 22:23:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219884#M6327</guid>
      <dc:creator>michael_andrews</dc:creator>
      <dc:date>2017-01-24T22:23:50Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent to Variance Function?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219885#M6328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Enter edit mode of your app, then you can find the variable overview:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="2017-01-24 23_33_29-.png" class="jive-image image-1" src="/legacyfs/online/150761_2017-01-24 23_33_29-.png" style="height: 362px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 22:35:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219885#M6328</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2017-01-24T22:35:22Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent to Variance Function?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219886#M6329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great, I'll check that out tomorrow. Thanks again for all your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 23:13:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Equivalent-to-Variance-Function/m-p/1219886#M6329</guid>
      <dc:creator>michael_andrews</dc:creator>
      <dc:date>2017-01-24T23:13:40Z</dc:date>
    </item>
  </channel>
</rss>

