<?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 write expression to get latest column values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505208#M1142941</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well... I don't know if this is the best option but right off the bat I would convert your comments field into a dual field, so for each comment I would add a numeric value, something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&amp;nbsp; Dual (CommentField, CommentDate) as Comment&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, if given your table dimensions you may get more than one comment per row, when you use the MaxString function you'll only get the comment value with the biggest CommentDate value. If it's possible to have more than one comment per day, make sure that CommentDate has the time detail so it's different for each Comment.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Sep 2013 16:12:04 GMT</pubDate>
    <dc:creator>Carlos_Reyes</dc:creator>
    <dc:date>2013-09-10T16:12:04Z</dc:date>
    <item>
      <title>How to write expression to get latest column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505204#M1142937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a qlikview file which contains pivot and straight chart items. In one straight Chart I need to get Latest Comment which is getting the latest comments from access database table. But I am not getting the latest comment. suppose if the user added the latest comment today I need to get that in the column value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used the below expression to get the latest comment&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=MaxString(Comment)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but it's not working as I am getting old comments which are added a few days back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could anyone help me in this how to use expression to get the latest comment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Sep 2013 15:58:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505204#M1142937</guid>
      <dc:creator />
      <dc:date>2013-09-10T15:58:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to write expression to get latest column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505205#M1142938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First of all you will need a field that will have a unique value for each comment and increases in value for each comment added. A timestamp field is one option, a counter field would do too. Once you have such a field you can use the firstsortedvalue function to get the latest comment: firstsortedvalue(CommentField, -TimestampField)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See &lt;A href="http://qlikshare.com/392"&gt;this video&lt;/A&gt; for an introduction to the firstsortedvalue function.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Sep 2013 16:05:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505205#M1142938</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-09-10T16:05:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to write expression to get latest column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505206#M1142939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;FirstSortedValue&lt;/STRONG&gt;(&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier;"&gt;Comment&lt;/SPAN&gt;,&lt;STRONG&gt;-&lt;/STRONG&gt;datefield)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;OBJECT height="0" type="application/gas-events-abn" width="0"&gt;&lt;/OBJECT&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Sep 2013 16:07:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505206#M1142939</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2013-09-10T16:07:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to write expression to get latest column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505207#M1142940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for this. But which datefield I need to use? could you tell me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Sep 2013 16:10:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505207#M1142940</guid>
      <dc:creator />
      <dc:date>2013-09-10T16:10:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to write expression to get latest column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505208#M1142941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well... I don't know if this is the best option but right off the bat I would convert your comments field into a dual field, so for each comment I would add a numeric value, something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&amp;nbsp; Dual (CommentField, CommentDate) as Comment&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, if given your table dimensions you may get more than one comment per row, when you use the MaxString function you'll only get the comment value with the biggest CommentDate value. If it's possible to have more than one comment per day, make sure that CommentDate has the time detail so it's different for each Comment.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Sep 2013 16:12:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505208#M1142941</guid>
      <dc:creator>Carlos_Reyes</dc:creator>
      <dc:date>2013-09-10T16:12:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to write expression to get latest column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505209#M1142942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look at your Comments Table,is there any date field there that informs the date?&lt;BR /&gt;Or any other field that tells the order in which they were posted?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Sep 2013 16:12:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505209#M1142942</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2013-09-10T16:12:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to write expression to get latest column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505210#M1142943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes I have two date fields which are used in expressions tab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;one is&amp;nbsp; Date(ContactDate,'DD/MM/YYYY')&amp;nbsp;&amp;nbsp; as ContactDate&amp;nbsp; from one table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;another one is Date(AppointmentDate,'DD/MM/YYYY')&amp;nbsp;&amp;nbsp; as&amp;nbsp; AppointmentDate&amp;nbsp; from another table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, in this case how can I use? ios there any proablem with Date function?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Sep 2013 16:25:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505210#M1142943</guid>
      <dc:creator />
      <dc:date>2013-09-10T16:25:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to write expression to get latest column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505211#M1142944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Amelia,&lt;/P&gt;&lt;P&gt;which field describes when the Comment was posted? I´m gessing it´s ContactDate, so your expression would be&lt;/P&gt;&lt;P&gt;FirstSortedValue(Comment,-ContactDate).&lt;/P&gt;&lt;P&gt;Please note the "-" sign so we want the "Last Value" and not first one&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Sep 2013 16:29:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505211#M1142944</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2013-09-10T16:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to write expression to get latest column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505212#M1142945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your answer. Yes it is correct I used ContactDate. Actually I used Conatctdate like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date(ContactDate,'DD/MM/YYY') as ContactDate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I use ContactDate I am getting for eg: 09/09/2013 11:09am. to aviod this I used date function. But I need the column as it is without using date function. Could you let me know whether it is possible or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Sep 2013 10:16:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505212#M1142945</guid>
      <dc:creator />
      <dc:date>2013-09-11T10:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to write expression to get latest column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505213#M1142946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, its possible Amelia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f6f6f6;"&gt;FirstSortedValue(Comment,-ContactDate)&lt;/SPAN&gt; and post what happens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Sep 2013 13:40:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505213#M1142946</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2013-09-11T13:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to write expression to get latest column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505214#M1142947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thanks very much it's working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amelia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Sep 2013 15:10:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505214#M1142947</guid>
      <dc:creator />
      <dc:date>2013-09-12T15:10:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to write expression to get latest column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505215#M1142948</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;If I am using FirstSortedValue(Comment,-ContactDate) am getting comments but forename,surname,jointname,staffname are showing blank values. could you please help me in this as it is urgent now please.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Sep 2013 13:35:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505215#M1142948</guid>
      <dc:creator />
      <dc:date>2013-09-13T13:35:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to write expression to get latest column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505216#M1142951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please help as I strucked here and couldn't able to get the names for several clients&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Sep 2013 14:18:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505216#M1142951</guid>
      <dc:creator />
      <dc:date>2013-09-13T14:18:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to write expression to get latest column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505217#M1142952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;forename,surname,jointname,staffname fields are in same table?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Do you have skype? If you have, it would be easier to help, please add me: cleveranjos&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Sep 2013 14:26:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505217#M1142952</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2013-09-13T14:26:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to write expression to get latest column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505218#M1142953</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;Thanks for this.&lt;/P&gt;&lt;P&gt;forename,surname,jointname are from one table , staffname is from one table and the comment is from another table.&lt;/P&gt;&lt;P&gt;Could you help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I am in office and&amp;nbsp; don't have server access to login from my home so that's the reason I couldn't able to login skype from office&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Sep 2013 14:30:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505218#M1142953</guid>
      <dc:creator />
      <dc:date>2013-09-13T14:30:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to write expression to get latest column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505219#M1142954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That sounds like there are several forenames/surnames/jointnames/staffnames with the same contactdate. In that case you can't use the firstsortedvalue. Perhaps you can concatenate them first:&lt;/P&gt;&lt;P&gt;firstsortedvalue( aggr(concat(forename, ', '),ConcactDate), -ContactDate)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Sep 2013 14:33:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505219#M1142954</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-09-13T14:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to write expression to get latest column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505220#M1142955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have any keys between those tables?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Sep 2013 14:38:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505220#M1142955</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2013-09-13T14:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to write expression to get latest column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505221#M1142956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks and this is also not showing the names. please help and moreover when I make chages to Live file every time it is decreasing the Live qlikview file size. Is it recommended to reload and save manually apart from reload engine? Could you please let me know.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Sep 2013 15:02:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505221#M1142956</guid>
      <dc:creator />
      <dc:date>2013-09-13T15:02:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to write expression to get latest column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505222#M1142957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes I have keys in names table and to join all these columns I used Link Table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Sep 2013 15:03:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505222#M1142957</guid>
      <dc:creator />
      <dc:date>2013-09-13T15:03:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to write expression to get latest column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505223#M1142958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to post a sample of your app?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Sep 2013 16:10:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-write-expression-to-get-latest-column-values/m-p/505223#M1142958</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2013-09-13T16:10:42Z</dc:date>
    </item>
  </channel>
</rss>

