<?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 Filter values from INLINE starting with certain numbers in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Filter-values-from-INLINE-starting-with-certain-numbers/m-p/808751#M1022516</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;I have my Script with an INLINE table for field ID with values:&lt;/P&gt;&lt;P&gt;000&lt;/P&gt;&lt;P&gt;005&lt;/P&gt;&lt;P&gt;020&lt;/P&gt;&lt;P&gt;035&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I have my Fact Table with the ID and other fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The thing is that I need to get the IDs &lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;STARTING&lt;/STRONG&gt;&lt;/SPAN&gt; with the values from INLINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, IDs: &lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;000&lt;/STRONG&gt;&lt;/SPAN&gt;835, &lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;005&lt;/STRONG&gt;&lt;/SPAN&gt;358, etcetera.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any way to do this in the WHERE clause from the Fact Table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(If I make a Where Exists(ID) in the Fact Table, I'd only get values 000, 005, 020 and 035)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 27 Mar 2015 15:00:47 GMT</pubDate>
    <dc:creator>microwin88x</dc:creator>
    <dc:date>2015-03-27T15:00:47Z</dc:date>
    <item>
      <title>Filter values from INLINE starting with certain numbers</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-values-from-INLINE-starting-with-certain-numbers/m-p/808751#M1022516</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;I have my Script with an INLINE table for field ID with values:&lt;/P&gt;&lt;P&gt;000&lt;/P&gt;&lt;P&gt;005&lt;/P&gt;&lt;P&gt;020&lt;/P&gt;&lt;P&gt;035&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I have my Fact Table with the ID and other fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The thing is that I need to get the IDs &lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;STARTING&lt;/STRONG&gt;&lt;/SPAN&gt; with the values from INLINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, IDs: &lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;000&lt;/STRONG&gt;&lt;/SPAN&gt;835, &lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;005&lt;/STRONG&gt;&lt;/SPAN&gt;358, etcetera.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any way to do this in the WHERE clause from the Fact Table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(If I make a Where Exists(ID) in the Fact Table, I'd only get values 000, 005, 020 and 035)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Mar 2015 15:00:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-values-from-INLINE-starting-with-certain-numbers/m-p/808751#M1022516</guid>
      <dc:creator>microwin88x</dc:creator>
      <dc:date>2015-03-27T15:00:47Z</dc:date>
    </item>
    <item>
      <title>Re: Filter values from INLINE starting with certain numbers</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-values-from-INLINE-starting-with-certain-numbers/m-p/808752#M1022517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Temp:&lt;/P&gt;&lt;P&gt;Load Num#(ID,'000') as ID INLINE&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;&amp;nbsp; ID&lt;/P&gt;&lt;P&gt;&amp;nbsp; 000&lt;/P&gt;&lt;P&gt;&amp;nbsp; 005&lt;/P&gt;&lt;P&gt;&amp;nbsp; 020&lt;/P&gt;&lt;P&gt;&amp;nbsp; 035&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sales:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp; CustomerID,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Sales&lt;/P&gt;&lt;P&gt;&amp;nbsp; Where Exists (ID, ID1);&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp; Num#(CustomerID,'000000') as CustomerID,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Num#(Left(Num#(CustomerID,'000000'),3),'000') as ID1,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Sales&lt;/P&gt;&lt;P&gt;Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;&amp;nbsp; CustomerID, Sales&lt;/P&gt;&lt;P&gt;&amp;nbsp; 000835, 100&lt;/P&gt;&lt;P&gt;&amp;nbsp; 000122, 120&lt;/P&gt;&lt;P&gt;&amp;nbsp; 005140, 200&lt;/P&gt;&lt;P&gt;&amp;nbsp; 001256, 100&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Mar 2015 15:07:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-values-from-INLINE-starting-with-certain-numbers/m-p/808752#M1022517</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-03-27T15:07:02Z</dc:date>
    </item>
  </channel>
</rss>

