<?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: Partial Reload for only one table in scirpt in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Partial-Reload-for-only-one-table-in-scirpt/m-p/245619#M93637</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Succes!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Nov 2011 09:00:03 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-11-22T09:00:03Z</dc:date>
    <item>
      <title>Partial Reload for only one table in scirpt</title>
      <link>https://community.qlik.com/t5/QlikView/Partial-Reload-for-only-one-table-in-scirpt/m-p/245616#M93634</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;In Edit Script having two tables ie;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table1:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Replace Load * Inline&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;[Test1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table2:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Replace Load * Inline&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;[Test2&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;11&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;22&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;33];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And i written a macro for Partial Reload in Button Action. &lt;/P&gt;&lt;P&gt;Now what i am trying to do is when i click the Button ONLY TABLE1 should be partial reload, it should not be Partial Reload for TABLE2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sub PartialReload&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ActiveDocument.PartialReload&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;End Sub&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How it can be done ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2011 07:58:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Partial-Reload-for-only-one-table-in-scirpt/m-p/245616#M93634</guid>
      <dc:creator />
      <dc:date>2011-11-22T07:58:33Z</dc:date>
    </item>
    <item>
      <title>Partial Reload for only one table in scirpt</title>
      <link>https://community.qlik.com/t5/QlikView/Partial-Reload-for-only-one-table-in-scirpt/m-p/245617#M93635</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 do this with a subroutine in the script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub table 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub table 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you use a variable to switch:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call vTableYouWantToRefresh;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This variable is the one you can change with the button in de frontend.&lt;/P&gt;&lt;P&gt;So make a button that change the variable and then reload the script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With this methode you can make more possibilities (eg reload both tables).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Succes!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2011 08:27:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Partial-Reload-for-only-one-table-in-scirpt/m-p/245617#M93635</guid>
      <dc:creator />
      <dc:date>2011-11-22T08:27:47Z</dc:date>
    </item>
    <item>
      <title>Re: Partial Reload for only one table in scirpt</title>
      <link>https://community.qlik.com/t5/QlikView/Partial-Reload-for-only-one-table-in-scirpt/m-p/245618#M93636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Halmar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I didn't get full what you said, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can please explain clearly or can you provide a sample application file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2011 08:40:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Partial-Reload-for-only-one-table-in-scirpt/m-p/245618#M93636</guid>
      <dc:creator />
      <dc:date>2011-11-22T08:40:23Z</dc:date>
    </item>
    <item>
      <title>Re: Partial Reload for only one table in scirpt</title>
      <link>https://community.qlik.com/t5/QlikView/Partial-Reload-for-only-one-table-in-scirpt/m-p/245619#M93637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Succes!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2011 09:00:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Partial-Reload-for-only-one-table-in-scirpt/m-p/245619#M93637</guid>
      <dc:creator />
      <dc:date>2011-11-22T09:00:03Z</dc:date>
    </item>
  </channel>
</rss>

