<?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: Error in Let statement in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Error-in-Let-statement/m-p/933739#M958860</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So you mean to say if I assign any field value directly to Let variable, it will never work?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Through Peek() I need to assign, if not Temp table? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Nov 2015 08:16:17 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-11-04T08:16:17Z</dc:date>
    <item>
      <title>Error in Let statement</title>
      <link>https://community.qlik.com/t5/QlikView/Error-in-Let-statement/m-p/933735#M958856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is error in following statement?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let VMaxTrxnDate=max(TRXDATE);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Nov 2015 08:04:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-in-Let-statement/m-p/933735#M958856</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-04T08:04:15Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Let statement</title>
      <link>https://community.qlik.com/t5/QlikView/Error-in-Let-statement/m-p/933736#M958857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check whether &lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;TRXDATE is in DATE or Number format ?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Nov 2015 08:07:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-in-Let-statement/m-p/933736#M958857</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2015-11-04T08:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Let statement</title>
      <link>https://community.qlik.com/t5/QlikView/Error-in-Let-statement/m-p/933737#M958858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if TRXDATE is a column/field of a table this is not possible&lt;/P&gt;&lt;P&gt;you may build a temporary table to get the max(TRXDATE) and then&lt;/P&gt;&lt;P&gt;assign to a variable using peek function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET VMaxTrxnDate=peek('yournewfield',x)&amp;nbsp; x 0 or -1 depends on order of your temp table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Nov 2015 08:08:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-in-Let-statement/m-p/933737#M958858</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-04T08:08:35Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Let statement</title>
      <link>https://community.qlik.com/t5/QlikView/Error-in-Let-statement/m-p/933738#M958859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Let evaluates the expression and this expression cannot be evaluated at load time. Perhaps you want to use this in the front end. Change the let to set:&lt;/P&gt;&lt;P&gt;&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;set VMaxTrxnDate = max(TRXDATE);&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: 13px;"&gt;or&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;set VMaxTrxnDate = '=max(TRXDATE)';&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: 13px;"&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; font-size: 13px;"&gt;Now you can use &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;VMaxTrxnDate in front end expressions.&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Nov 2015 08:14:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-in-Let-statement/m-p/933738#M958859</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-11-04T08:14:32Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Let statement</title>
      <link>https://community.qlik.com/t5/QlikView/Error-in-Let-statement/m-p/933739#M958860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So you mean to say if I assign any field value directly to Let variable, it will never work?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Through Peek() I need to assign, if not Temp table? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Nov 2015 08:16:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-in-Let-statement/m-p/933739#M958860</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-04T08:16:17Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Let statement</title>
      <link>https://community.qlik.com/t5/QlikView/Error-in-Let-statement/m-p/933740#M958861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Avinash ,Format is not a concern...&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Nov 2015 08:17:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-in-Let-statement/m-p/933740#M958861</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-04T08:17:30Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Let statement</title>
      <link>https://community.qlik.com/t5/QlikView/Error-in-Let-statement/m-p/933741#M958862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a similiar Problem where I Need to get Dates out of a fact table and Loop through them&lt;/P&gt;&lt;P&gt;i use&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Timetab:&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;NoConcatenate&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;load&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Distinct&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; MyDate&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Resident&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; Timetab1&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;order&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;by&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; 1 &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;asc&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;in a Loop i use this statement&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG&gt;LET&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;vNoRows&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; = &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;noofrows&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;('Timetab'); &lt;/SPAN&gt;&lt;SPAN style="color: #008000; font-size: 8pt;"&gt;// number of months&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;for&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;i&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;= 0 &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;to&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;vNoRows&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #008000; font-size: 8pt;"&gt;//&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;Let&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;vDate&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; = &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;peek&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(MyDate,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;i&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,'Timetab'); &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Nov 2015 08:26:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-in-Let-statement/m-p/933741#M958862</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-04T08:26:16Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Let statement</title>
      <link>https://community.qlik.com/t5/QlikView/Error-in-Let-statement/m-p/933742#M958863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thats Fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I am looking for is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is their any alternate way to fetch the maximum date entry value without taking resident of it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Nov 2015 08:29:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-in-Let-statement/m-p/933742#M958863</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-04T08:29:53Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Let statement</title>
      <link>https://community.qlik.com/t5/QlikView/Error-in-Let-statement/m-p/933743#M958864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not to my knowledge&lt;/P&gt;&lt;P&gt;That's why I use the peek function&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Nov 2015 08:36:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-in-Let-statement/m-p/933743#M958864</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-04T08:36:48Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Let statement</title>
      <link>https://community.qlik.com/t5/QlikView/Error-in-Let-statement/m-p/933744#M958865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oky, But again to do it with Peek() I need to go for resident load which I dont want...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Nov 2015 08:38:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-in-Let-statement/m-p/933744#M958865</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-04T08:38:19Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Let statement</title>
      <link>https://community.qlik.com/t5/QlikView/Error-in-Let-statement/m-p/933745#M958866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you find another way, it will be great&lt;/P&gt;&lt;P&gt;if not, you need to eat a sour apple (you may drop the resident table), the result is more important if it's the&lt;/P&gt;&lt;P&gt;only way to achieve what you want&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Nov 2015 08:43:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-in-Let-statement/m-p/933745#M958866</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-04T08:43:44Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Let statement</title>
      <link>https://community.qlik.com/t5/QlikView/Error-in-Let-statement/m-p/933746#M958867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Balraj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot directly use Aggregare functions in LET statement instead you can try like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MaxTRXDATE:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Max(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;TRXDATE&lt;/SPAN&gt;) AS MaxDate&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;RESIDENT Invoice;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;let VMaxTrxnDate=Peek('&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;MaxDate&lt;/SPAN&gt;');&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;DROP TABLE &lt;SPAN style="font-size: 13.3333px;"&gt;MaxTRXDATE;&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Hope this helps you.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Jagan.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Nov 2015 08:45:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-in-Let-statement/m-p/933746#M958867</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-11-04T08:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Let statement</title>
      <link>https://community.qlik.com/t5/QlikView/Error-in-Let-statement/m-p/933747#M958868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to use at backend only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But no problem as shared by other, will do.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Nov 2015 09:48:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-in-Let-statement/m-p/933747#M958868</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-04T09:48:26Z</dc:date>
    </item>
  </channel>
</rss>

