<?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: Help with LET variable in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Help-with-LET-variable/m-p/763147#M1042487</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;The format of the date you pass in the where clause must be the same of the database field. Since you tried &lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;'01/12/2014' &lt;/EM&gt;&lt;/STRONG&gt;and it worked, let's stick to that format. Create your variable like so:&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;"&gt;Let vNOWTIME = Text(Date(Today(1), 'DD/MM/YYYY'));&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;Now, in the where clause you must enclose the dollar-sign substitution in single quotes:&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;WHERE "UPD_DT" &amp;gt;= '$(vNOWTIME)';&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;If you don't, your database engine will not receive a string or a date but an expression (&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;02/12/2014&lt;/SPAN&gt;) and will make the two divisions, that is, 2 divided by 12 divided by 2014, and compare the result with &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;UPD_DT.&lt;/SPAN&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;&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;Hope it helps.&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; - Bruno&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Dec 2014 01:27:40 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-12-03T01:27:40Z</dc:date>
    <item>
      <title>Help with LET variable</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-LET-variable/m-p/763139#M1042479</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;/P&gt;&lt;P&gt;probably doing something not right but following code throwing error "&lt;STRONG&gt;ErrorSource: OraOLEDB, ErrorMsg: ORA-00933: SQL command not properly ended"&lt;/STRONG&gt;. I am trying to grab data from Oracle table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let vNOWTIME =&amp;nbsp; Timestamp(Now()-1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OLEDB CONNECT32 TO [xxxxxxxxxxxxxxxxx);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "UPD_DT",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CUSTOMER,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PRODID,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PROD,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PRDNM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;FROM "XE256"."ORA_78998465"&lt;/P&gt;&lt;P&gt;WHERE "UPD_DT" &amp;gt;= $(vNOWTIME);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPD_DT has a timestamp where data was last updated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i replace statement "&lt;STRONG&gt;&lt;EM&gt;WHERE "UPD_DT" &amp;gt;= $(vNOWTIME)&lt;/EM&gt;;&lt;/STRONG&gt;" with &lt;STRONG&gt;&lt;EM&gt;WHERE "UPD_DT" &amp;gt;= '01/12/2014';&lt;/EM&gt;&lt;/STRONG&gt;" it works fine. Seems like i am not using LET expression correctly? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2014 22:38:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-LET-variable/m-p/763139#M1042479</guid>
      <dc:creator />
      <dc:date>2014-12-02T22:38:27Z</dc:date>
    </item>
    <item>
      <title>Re: Help with LET variable</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-LET-variable/m-p/763140#M1042480</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;It's probably a formatting tweak.&lt;/P&gt;&lt;P&gt;Can you try the below:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.8000001907349px;"&gt;Let vNOWTIME =&amp;nbsp; Date(Timestamp(Now()-1), 'DD/MM/YYYY');&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2014 22:54:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-LET-variable/m-p/763140#M1042480</guid>
      <dc:creator />
      <dc:date>2014-12-02T22:54:15Z</dc:date>
    </item>
    <item>
      <title>Re: Help with LET variable</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-LET-variable/m-p/763141#M1042481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi , change your definition in your variable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let vNOWTIME =&amp;nbsp; date(today());&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the function timestamps will retunr the date,hours,second and mili seconds too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then in the where clause change to this:&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;"&gt;WHERE "UPD_DT" &amp;gt;= '$(vNOWTIME)';&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;try this good luck&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;Fernando&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2014 22:57:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-LET-variable/m-p/763141#M1042481</guid>
      <dc:creator>fkeuroglian</dc:creator>
      <dc:date>2014-12-02T22:57:14Z</dc:date>
    </item>
    <item>
      <title>Re: Help with LET variable</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-LET-variable/m-p/763142#M1042482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeap seems like a formatting now getting this error&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ErrorSource: OraOLEDB, ErrorMsg: ORA-00932: inconsistent datatypes: expected DATE got NUMBER&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess i probably need to change "UPD_DT" to Date format??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2014 23:15:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-LET-variable/m-p/763142#M1042482</guid>
      <dc:creator />
      <dc:date>2014-12-02T23:15:47Z</dc:date>
    </item>
    <item>
      <title>Re: Help with LET variable</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-LET-variable/m-p/763143#M1042483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;tried this too&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;got following&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*ErrorSource: OraOLEDB, ErrorMsg: ORA-00932: inconsistent datatypes:&lt;/P&gt;&lt;P&gt;expected DATE got NUMBER*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess i probably need to change "UPD_DT" to Date format??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On Wed, Dec 3, 2014 at 9:58 AM, Fernando Keuroglian &amp;lt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2014 23:17:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-LET-variable/m-p/763143#M1042483</guid>
      <dc:creator />
      <dc:date>2014-12-02T23:17:39Z</dc:date>
    </item>
    <item>
      <title>Re: Help with LET variable</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-LET-variable/m-p/763144#M1042484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try using the to_date function in the where condition:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.8000001907349px;"&gt;WHERE "UPD_DT" &amp;gt;= to_date('$(vNOWTIME)', 'dd/mm/yyyy');&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2014 23:46:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-LET-variable/m-p/763144#M1042484</guid>
      <dc:creator />
      <dc:date>2014-12-02T23:46:31Z</dc:date>
    </item>
    <item>
      <title>Re: Help with LET variable</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-LET-variable/m-p/763145#M1042485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. Seems to have taken this and running successfully, but looks like it is grabbing data more then today date -1... &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Dec 2014 00:13:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-LET-variable/m-p/763145#M1042485</guid>
      <dc:creator />
      <dc:date>2014-12-03T00:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: Help with LET variable</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-LET-variable/m-p/763146#M1042486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what about:&lt;/P&gt;&lt;P&gt;LET vNOWTIME = 'date(today,'DD/MM/YYYY')-1';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where date#(UPD_DT,'DD/MM/YYYY')&amp;gt;= $(vNOWTIME);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Dec 2014 00:31:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-LET-variable/m-p/763146#M1042486</guid>
      <dc:creator>danieloberbilli</dc:creator>
      <dc:date>2014-12-03T00:31:48Z</dc:date>
    </item>
    <item>
      <title>Re: Help with LET variable</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-LET-variable/m-p/763147#M1042487</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;The format of the date you pass in the where clause must be the same of the database field. Since you tried &lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;'01/12/2014' &lt;/EM&gt;&lt;/STRONG&gt;and it worked, let's stick to that format. Create your variable like so:&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;"&gt;Let vNOWTIME = Text(Date(Today(1), 'DD/MM/YYYY'));&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;Now, in the where clause you must enclose the dollar-sign substitution in single quotes:&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;WHERE "UPD_DT" &amp;gt;= '$(vNOWTIME)';&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;If you don't, your database engine will not receive a string or a date but an expression (&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;02/12/2014&lt;/SPAN&gt;) and will make the two divisions, that is, 2 divided by 12 divided by 2014, and compare the result with &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;UPD_DT.&lt;/SPAN&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;&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;Hope it helps.&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; - Bruno&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Dec 2014 01:27:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-LET-variable/m-p/763147#M1042487</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-03T01:27:40Z</dc:date>
    </item>
    <item>
      <title>Re: Help with LET variable</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-LET-variable/m-p/763148#M1042488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot . Working well &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Dec 2014 01:49:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-LET-variable/m-p/763148#M1042488</guid>
      <dc:creator />
      <dc:date>2014-12-03T01:49:44Z</dc:date>
    </item>
    <item>
      <title>Re: Help with LET variable</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-LET-variable/m-p/763149#M1042490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You're welcome. Glad I could help. Please, mark the post as answered so others will that have a similar problem can find the answer more easily.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Dec 2014 01:55:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-LET-variable/m-p/763149#M1042490</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-03T01:55:31Z</dc:date>
    </item>
  </channel>
</rss>

