<?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: Max variable size? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Max-variable-size/m-p/1041545#M922027</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Assuming ProductIDs isn't the key to the table, then the script doesn't work because in the second load, you'll only get the very first record for any given ProductIDs. After that, the ProductIDs exists, so you won't load any further records for it. The solution would be to load the first field as ReturnedProductIDs, and do not exists(ReturnedProductIDs, ProductIDs). That's my guess, anyway. I wasn't exactly clear what wasn't working, just that it wasn't working as you expected.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 Apr 2016 23:26:01 GMT</pubDate>
    <dc:creator>johnw</dc:creator>
    <dc:date>2016-04-15T23:26:01Z</dc:date>
    <item>
      <title>Max variable size?</title>
      <link>https://community.qlik.com/t5/QlikView/Max-variable-size/m-p/1041538#M922020</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;I am creating a variable in my script with around 9,000 numbers, they are separated like this, '1234','1233', etc..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The size is constantly 9,000 numbers, but I worry this may be too big and maybe the variable isnt capturing all the numbers, its very hard to check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;9000 numbers isnt too big for the variable to handle is it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Max-variable-size/m-p/1041538#M922020</guid>
      <dc:creator>stjernvd</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Max variable size?</title>
      <link>https://community.qlik.com/t5/QlikView/Max-variable-size/m-p/1041539#M922021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think there should be an issue, but why are you doing this? May be there is another better way to do this because you are always going to worry about checking if those 9000 values are there or not&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Apr 2016 17:29:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Max-variable-size/m-p/1041539#M922021</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-04-15T17:29:13Z</dc:date>
    </item>
    <item>
      <title>Re: Max variable size?</title>
      <link>https://community.qlik.com/t5/QlikView/Max-variable-size/m-p/1041540#M922022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;chk dis&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/message/647172#647172" title="https://community.qlik.com/message/647172#647172"&gt;https://community.qlik.com/message/647172#647172&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Apr 2016 17:30:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Max-variable-size/m-p/1041540#M922022</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2016-04-15T17:30:13Z</dc:date>
    </item>
    <item>
      <title>Re: Max variable size?</title>
      <link>https://community.qlik.com/t5/QlikView/Max-variable-size/m-p/1041541#M922023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a table with a list of Product IDs that I don't want to be pulled in another table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IDs:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;ProductIDs&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;From&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;xxx&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Where Purchase = 'RETURNED';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Main:&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;ProductIDs,&lt;/P&gt;&lt;P&gt;etc,&lt;/P&gt;&lt;P&gt;etc,&lt;/P&gt;&lt;P&gt;From&lt;/P&gt;&lt;P&gt;xxx&lt;/P&gt;&lt;P&gt;Where not exists (Product IDs);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this wouldnt work so I made ProductIDs in the IDs table as a variable instead and then in the Main table Where ProductIDs(not match ('$(variable') but this isn't the best approach due the reasons ive listed above. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas on why my where not exists isnt working? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Apr 2016 17:51:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Max-variable-size/m-p/1041541#M922023</guid>
      <dc:creator>stjernvd</dc:creator>
      <dc:date>2016-04-15T17:51:30Z</dc:date>
    </item>
    <item>
      <title>Re: Max variable size?</title>
      <link>https://community.qlik.com/t5/QlikView/Max-variable-size/m-p/1041542#M922024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First of all, I am guessing this was a typo -&amp;gt; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Where not exists (&lt;STRONG&gt;Product IDs&lt;/STRONG&gt;); -&amp;gt; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Where not exists (&lt;STRONG&gt;ProductIDs&lt;/STRONG&gt;);(Should be without any space, since both your fields name don't have space)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second, Do you have &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt;ProductIDs elsewhere in the script before you bring these two tables in?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Apr 2016 17:55:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Max-variable-size/m-p/1041542#M922024</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-04-15T17:55:20Z</dc:date>
    </item>
    <item>
      <title>Re: Max variable size?</title>
      <link>https://community.qlik.com/t5/QlikView/Max-variable-size/m-p/1041543#M922025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes it was a typo sorry!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No I don't, the first time I bring ProductIDs in is in the IDs table...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Apr 2016 17:57:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Max-variable-size/m-p/1041543#M922025</guid>
      <dc:creator>stjernvd</dc:creator>
      <dc:date>2016-04-15T17:57:27Z</dc:date>
    </item>
    <item>
      <title>Re: Max variable size?</title>
      <link>https://community.qlik.com/t5/QlikView/Max-variable-size/m-p/1041544#M922026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't see why the above script won't work. Can you share the whole script, may be we are missing something which is not shared here?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Apr 2016 18:00:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Max-variable-size/m-p/1041544#M922026</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-04-15T18:00:46Z</dc:date>
    </item>
    <item>
      <title>Re: Max variable size?</title>
      <link>https://community.qlik.com/t5/QlikView/Max-variable-size/m-p/1041545#M922027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Assuming ProductIDs isn't the key to the table, then the script doesn't work because in the second load, you'll only get the very first record for any given ProductIDs. After that, the ProductIDs exists, so you won't load any further records for it. The solution would be to load the first field as ReturnedProductIDs, and do not exists(ReturnedProductIDs, ProductIDs). That's my guess, anyway. I wasn't exactly clear what wasn't working, just that it wasn't working as you expected.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Apr 2016 23:26:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Max-variable-size/m-p/1041545#M922027</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2016-04-15T23:26:01Z</dc:date>
    </item>
  </channel>
</rss>

