<?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: First Value in the table in Archived Groups</title>
    <link>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32985#M1069</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its half because of the Group by Crawlwer, Manufacturer and Category.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll think Model will be enough&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Apr 2018 13:07:09 GMT</pubDate>
    <dc:creator>stabben23</dc:creator>
    <dc:date>2018-04-13T13:07:09Z</dc:date>
    <item>
      <title>First Value in the table</title>
      <link>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32964#M1048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;in the below table, i need to capture the first value of the price for every model and month_year in a &lt;STRONG&gt;new field&lt;/STRONG&gt;. (need in script level)&lt;/P&gt;&lt;P&gt;For Example:&lt;/P&gt;&lt;P&gt;for a model , if we have price for july2017 then we consider that price . if&amp;nbsp; july2017 has no price then we capture the price for aug2017&amp;nbsp; and so on .. &lt;/P&gt;&lt;P&gt;&lt;IMG alt="Table.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/199548_Table.JPG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2025 17:59:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32964#M1048</guid>
      <dc:creator>surendraj</dc:creator>
      <dc:date>2025-07-22T17:59:49Z</dc:date>
    </item>
    <item>
      <title>Re: First Value in the table</title>
      <link>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32965#M1049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Provide sample data for this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 11:04:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32965#M1049</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2018-04-13T11:04:11Z</dc:date>
    </item>
    <item>
      <title>Re: First Value in the table</title>
      <link>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32966#M1050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;maybe you can load it like follow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MinPrice:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Model,&lt;/P&gt;&lt;P&gt;min(Month_Year) as Min_MonthYear,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;firstsortedvalue(Price, Month_Year)&lt;/STRONG&gt; as Min_Price&lt;/P&gt;&lt;P&gt;Resident Your table&lt;/P&gt;&lt;P&gt;Group by Model;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then Connect(join) on Model&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EDITED!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 11:13:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32966#M1050</guid>
      <dc:creator>stabben23</dc:creator>
      <dc:date>2018-04-13T11:13:15Z</dc:date>
    </item>
    <item>
      <title>Re: First Value in the table</title>
      <link>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32967#M1051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be Left Join like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Left Join ( TableName)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Category,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Crawler,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Manufacturer,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Model,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FirstSortedValue(Price, - Month_Year) as LatestPrice&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident TableName&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Group By Category, Crawler, Manufacturer, Model;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 11:17:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32967#M1051</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-04-13T11:17:27Z</dc:date>
    </item>
    <item>
      <title>Re: First Value in the table</title>
      <link>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32968#M1052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when i execute this .. no data in &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;Min_Price. . &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 12:28:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32968#M1052</guid>
      <dc:creator>surendraj</dc:creator>
      <dc:date>2018-04-13T12:28:57Z</dc:date>
    </item>
    <item>
      <title>Re: First Value in the table</title>
      <link>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32969#M1053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;after exciting this, no data in the latestprice .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 12:32:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32969#M1053</guid>
      <dc:creator>surendraj</dc:creator>
      <dc:date>2018-04-13T12:32:21Z</dc:date>
    </item>
    <item>
      <title>Re: First Value in the table</title>
      <link>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32970#M1054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about if you do this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Left Join ( TableName)&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;LOAD Category,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Crawler,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Manufacturer,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Model,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FirstSortedValue(&lt;SPAN style="color: #ff0000;"&gt;DISTINCT&lt;/SPAN&gt; Price, - Month_Year) as LatestPrice&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Resident TableName&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Group By Category, Crawler, Manufacturer, Model;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 12:33:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32970#M1054</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-04-13T12:33:14Z</dc:date>
    </item>
    <item>
      <title>Re: First Value in the table</title>
      <link>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32971#M1055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Output should be &lt;IMG alt="output.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/199563_output.JPG" style="height: 373px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 12:36:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32971#M1055</guid>
      <dc:creator>surendraj</dc:creator>
      <dc:date>2018-04-13T12:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: First Value in the table</title>
      <link>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32972#M1056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Output should be&lt;/P&gt;&lt;P&gt;&lt;IMG alt="output.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/199564_output.JPG" style="height: 373px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 12:37:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32972#M1056</guid>
      <dc:creator>surendraj</dc:creator>
      <dc:date>2018-04-13T12:37:03Z</dc:date>
    </item>
    <item>
      <title>Re: First Value in the table</title>
      <link>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32973#M1057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh, you want the Price at the Min Date... try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Left Join (TableName)&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;LOAD Category,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Crawler,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Manufacturer,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Model,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FirstSortedValue(&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #ff0000;"&gt;DISTINCT&lt;/SPAN&gt; Price, Month_Year) as LatestPrice&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Resident TableName&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="color: #ff0000;"&gt;Where Len(Trim(Price)) &amp;gt; 0&lt;/SPAN&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Group By Category, Crawler, Manufacturer, Model;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 12:39:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32973#M1057</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-04-13T12:39:14Z</dc:date>
    </item>
    <item>
      <title>Re: First Value in the table</title>
      <link>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32974#M1058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;should work, send Excel instead of pic?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 12:44:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32974#M1058</guid>
      <dc:creator>stabben23</dc:creator>
      <dc:date>2018-04-13T12:44:53Z</dc:date>
    </item>
    <item>
      <title>Re: First Value in the table</title>
      <link>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32975#M1059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;maybe you have to format min(Month_Year) With date?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 12:46:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32975#M1059</guid>
      <dc:creator>stabben23</dc:creator>
      <dc:date>2018-04-13T12:46:40Z</dc:date>
    </item>
    <item>
      <title>Re: First Value in the table</title>
      <link>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32976#M1060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not getting in data in latest price field. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 12:47:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32976#M1060</guid>
      <dc:creator>surendraj</dc:creator>
      <dc:date>2018-04-13T12:47:21Z</dc:date>
    </item>
    <item>
      <title>Re: First Value in the table</title>
      <link>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32977#M1061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think &lt;A href="https://community.qlik.com/people/stabben23"&gt;stabben23&lt;/A&gt;‌ brought up a good point, is your Month_Year understood as date by QlikView?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/2954"&gt;Why don’t my dates work?&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-3102"&gt;QlikView Date fields&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/2622"&gt;Get the Dates Right&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 12:48:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32977#M1061</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-04-13T12:48:49Z</dc:date>
    </item>
    <item>
      <title>Re: First Value in the table</title>
      <link>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32978#M1062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;from data field .. i created month_year field &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 12:51:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32978#M1062</guid>
      <dc:creator>surendraj</dc:creator>
      <dc:date>2018-04-13T12:51:56Z</dc:date>
    </item>
    <item>
      <title>Re: First Value in the table</title>
      <link>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32979#M1063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;looks lika a string(text) value&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 12:55:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32979#M1063</guid>
      <dc:creator>stabben23</dc:creator>
      <dc:date>2018-04-13T12:55:49Z</dc:date>
    </item>
    <item>
      <title>Re: First Value in the table</title>
      <link>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32980#M1064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;after removing the month_year and replacing it with monthlastday field. Below is the data we see .&lt;/P&gt;&lt;P&gt;In the lastestprice field, the value is begin halfed .&lt;/P&gt;&lt;P&gt;&lt;IMG alt="data.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/199572_data.JPG" style="height: 293px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 12:59:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32980#M1064</guid>
      <dc:creator>surendraj</dc:creator>
      <dc:date>2018-04-13T12:59:46Z</dc:date>
    </item>
    <item>
      <title>Re: First Value in the table</title>
      <link>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32981#M1065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you using an expression for Price? or is it direct field reference?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 13:01:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32981#M1065</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-04-13T13:01:34Z</dc:date>
    </item>
    <item>
      <title>Re: First Value in the table</title>
      <link>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32982#M1066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Price is direct field ... &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 13:03:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32982#M1066</guid>
      <dc:creator>surendraj</dc:creator>
      <dc:date>2018-04-13T13:03:03Z</dc:date>
    </item>
    <item>
      <title>Re: First Value in the table</title>
      <link>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32983#M1067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No Data in the latestprice&lt;/P&gt;&lt;P&gt;&lt;IMG alt="data.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/199573_data.JPG" style="height: 214px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2018 13:04:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Archived-Groups/First-Value-in-the-table/m-p/32983#M1067</guid>
      <dc:creator>surendraj</dc:creator>
      <dc:date>2018-04-13T13:04:10Z</dc:date>
    </item>
  </channel>
</rss>

