<?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: Script loading in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Script-loading/m-p/404070#M150319</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have attached the qvd ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls reply.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 12 Oct 2012 09:20:50 GMT</pubDate>
    <dc:creator>vikasmahajan</dc:creator>
    <dc:date>2012-10-12T09:20:50Z</dc:date>
    <item>
      <title>Script loading</title>
      <link>https://community.qlik.com/t5/QlikView/Script-loading/m-p/404063#M150312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Dear all &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;I have following script with stockinoutindicator field while loading data from qvd&amp;nbsp; now I want to give&amp;nbsp; following &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Condition&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;============================&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;(Today()-max([Posting Date])) as [Exp Days Items]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;where StockInOutIndicator = '1'&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;============================&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;in same qvd file how to achive this can any one help in this matter.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Script&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;=============================&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ValueEntry_IAL:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if([Valued Quantity] &amp;gt;= 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; AND&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ((Entry_Type = 0 AND Doc_Type = 5)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; OR (Entry_Type = 1 AND Doc_Type = 3)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; OR (Entry_Type = 2)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; OR (Entry_Type = 4 AND Doc_Type = 10)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; OR (Entry_Type = 4 AND Doc_Type = 0)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; OR (Entry_Type = 6)),1,0) AS StockInOutIndicator&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; [Source QVDs NAV\Value_Entry.qvd]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; (qvd);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2012 11:07:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-loading/m-p/404063#M150312</guid>
      <dc:creator>vikasmahajan</dc:creator>
      <dc:date>2012-10-11T11:07:09Z</dc:date>
    </item>
    <item>
      <title>Re: Script loading</title>
      <link>https://community.qlik.com/t5/QlikView/Script-loading/m-p/404064#M150313</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;You can use a preceding load, something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13499538542888004" jivemacro_uid="_13499538542888004"&gt;&lt;P&gt;ValueEntry_IAL:&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; If(StockInOutIndicator = 1, Today() - Max([Posting Date])) AS [Exp Days Items];&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; IF([Valued Quantity] &amp;gt;= 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; AND&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ((Entry_Type = 0 AND Doc_Type = 5)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; OR (Entry_Type = 1 AND Doc_Type = 3)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; OR (Entry_Type = 2)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; OR (Entry_Type = 4 AND Doc_Type = 10)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; OR (Entry_Type = 4 AND Doc_Type = 0)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; OR (Entry_Type = 6)),1,0) AS StockInOutIndicator,&lt;/P&gt;&lt;P&gt;&amp;nbsp; ... // rest of the fields here&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; [Source QVDs NAV\Value_Entry.qvd]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; (qvd);&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2012 11:16:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-loading/m-p/404064#M150313</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2012-10-11T11:16:50Z</dc:date>
    </item>
    <item>
      <title>Re: Script loading</title>
      <link>https://community.qlik.com/t5/QlikView/Script-loading/m-p/404065#M150314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for prompt reply I will get back you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2012 11:18:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-loading/m-p/404065#M150314</guid>
      <dc:creator>vikasmahajan</dc:creator>
      <dc:date>2012-10-11T11:18:38Z</dc:date>
    </item>
    <item>
      <title>Re: Script loading</title>
      <link>https://community.qlik.com/t5/QlikView/Script-loading/m-p/404066#M150315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Miguel,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;I think Max function will not work while loading with other fields without GroupBy.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Vikasmahajan,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;The below code will help you, but make sure Today()-$(vMaxPD) should me in same format&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;MaxPDTable:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;LOAD &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;max([Posting Date]) as MaxPD&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;FROM&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;[Source QVDs NAV\Value_Entry.qvd]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;(qvd);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;LET vMaxPD = Peek('MaxPD',-1,'MaxPDTable');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;ValueEntry_IAL:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;LOAD *,(Today()-$(vMaxPD)) as [Exp Days Items]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Where StockInOutIndicator=1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;LOAD *,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;if([Valued Quantity] &amp;gt;= 0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp; AND&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ((Entry_Type = 0 AND Doc_Type = 5)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp; OR (Entry_Type = 1 AND Doc_Type = 3)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp; OR (Entry_Type = 2)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp; OR (Entry_Type = 4 AND Doc_Type = 10)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp; OR (Entry_Type = 4 AND Doc_Type = 0)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp; OR (Entry_Type = 6)),1,0) AS StockInOutIndicator&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;FROM&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;[Source QVDs NAV\Value_Entry.qvd]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;(qvd)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers!!&lt;/P&gt;&lt;P&gt;Jagan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2012 11:31:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-loading/m-p/404066#M150315</guid>
      <dc:creator>jagannalla</dc:creator>
      <dc:date>2012-10-11T11:31:53Z</dc:date>
    </item>
    <item>
      <title>Re: Script loading</title>
      <link>https://community.qlik.com/t5/QlikView/Script-loading/m-p/404067#M150316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you are wright...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks Mr.Jagan I will try let you know the status...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikas &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2012 03:12:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-loading/m-p/404067#M150316</guid>
      <dc:creator>vikasmahajan</dc:creator>
      <dc:date>2012-10-12T03:12:26Z</dc:date>
    </item>
    <item>
      <title>Re: Script loading</title>
      <link>https://community.qlik.com/t5/QlikView/Script-loading/m-p/404068#M150317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have attached QV1.qvw file&amp;nbsp; , Please it is loading only 3 records who have &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008000; font-size: 8pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008000; font-size: 8pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;StockInOutIndicator = 1 , but&amp;nbsp; i want all the 4 records&amp;nbsp; load all data with exp days.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reply&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2012 07:46:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-loading/m-p/404068#M150317</guid>
      <dc:creator>vikasmahajan</dc:creator>
      <dc:date>2012-10-12T07:46:19Z</dc:date>
    </item>
    <item>
      <title>Re: Script loading</title>
      <link>https://community.qlik.com/t5/QlikView/Script-loading/m-p/404069#M150318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Hello,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Can you attach sample data file(i.e. xyz.qvd).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Jagan&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2012 09:01:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-loading/m-p/404069#M150318</guid>
      <dc:creator>jagannalla</dc:creator>
      <dc:date>2012-10-12T09:01:48Z</dc:date>
    </item>
    <item>
      <title>Re: Script loading</title>
      <link>https://community.qlik.com/t5/QlikView/Script-loading/m-p/404070#M150319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have attached the qvd ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls reply.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2012 09:20:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-loading/m-p/404070#M150319</guid>
      <dc:creator>vikasmahajan</dc:creator>
      <dc:date>2012-10-12T09:20:50Z</dc:date>
    </item>
    <item>
      <title>Re: Script loading</title>
      <link>https://community.qlik.com/t5/QlikView/Script-loading/m-p/404071#M150320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Sorry I didn't seen Inline table. Ok see this image&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;&lt;IMG __jive_id="23388" alt="2.jpg" class="jive-image-thumbnail jive-image" src="https://community.qlik.com/legacyfs/online/23388_2.jpg" width="450" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;For max date your StockInOutIndicator gives you zero value. When we are loading the table with condition Where StockInOutIndicator we can see only 3 records.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Cheers!!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Jagan &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2012 10:11:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-loading/m-p/404071#M150320</guid>
      <dc:creator>jagannalla</dc:creator>
      <dc:date>2012-10-12T10:11:55Z</dc:date>
    </item>
    <item>
      <title>Re: Script loading</title>
      <link>https://community.qlik.com/t5/QlikView/Script-loading/m-p/404072#M150321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;cAN WE SHOW ALL 4 RECORDS AT A TIME ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2012 10:21:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-loading/m-p/404072#M150321</guid>
      <dc:creator>vikasmahajan</dc:creator>
      <dc:date>2012-10-12T10:21:52Z</dc:date>
    </item>
    <item>
      <title>Re: Script loading</title>
      <link>https://community.qlik.com/t5/QlikView/Script-loading/m-p/404073#M150322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;cAN WE SHOW ALL 4 RECORDS AT A TIME ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2012 10:37:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-loading/m-p/404073#M150322</guid>
      <dc:creator>vikasmahajan</dc:creator>
      <dc:date>2012-10-12T10:37:32Z</dc:date>
    </item>
    <item>
      <title>Re: Script loading</title>
      <link>https://community.qlik.com/t5/QlikView/Script-loading/m-p/404074#M150323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then we need to remove the where conditon...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2012 10:43:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-loading/m-p/404074#M150323</guid>
      <dc:creator>jagannalla</dc:creator>
      <dc:date>2012-10-12T10:43:35Z</dc:date>
    </item>
    <item>
      <title>Re: Script loading</title>
      <link>https://community.qlik.com/t5/QlikView/Script-loading/m-p/404075#M150324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jagan 41193 days appering insted of 73 ? what could be a reson&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Oct 2012 10:48:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-loading/m-p/404075#M150324</guid>
      <dc:creator>vikasmahajan</dc:creator>
      <dc:date>2012-10-13T10:48:59Z</dc:date>
    </item>
    <item>
      <title>Re: Script loading</title>
      <link>https://community.qlik.com/t5/QlikView/Script-loading/m-p/404076#M150325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;How are you saying that you need 73 ? &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;It all depends on what we need. Can you attach sample file according to your data what you have now and tell us wt is the output you need according to that data.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Cheers!!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Jagan&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2012 08:41:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-loading/m-p/404076#M150325</guid>
      <dc:creator>jagannalla</dc:creator>
      <dc:date>2012-10-16T08:41:06Z</dc:date>
    </item>
  </channel>
</rss>

