<?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 Remove Data from a database table? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Remove-Data-from-a-database-table/m-p/172666#M42144</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Shouldn't it be IF(LEFT(contract_partner, 3) = 'RTS'. contract_partner)&lt;/P&gt;&lt;P&gt;2 looks at only two chars not three. So change it to 3 or change rts to rt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Mar 2010 20:59:50 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-03-09T20:59:50Z</dc:date>
    <item>
      <title>Remove Data from a database table?</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-Data-from-a-database-table/m-p/172659#M42137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;I have a QlikView Document, who get its data from the database. Now I want to create a list box, where i choose a table from the database. But in this list box i only want to have a few data from this table - not all. I tryed importing the whole table to Excel, remove the data which is not relevant, saved the excel file and load it up in QlikView. After I created a list box with this table (I created), I can choose data but they are not in connection to the data in the database.&lt;/P&gt;&lt;P&gt;So, here's my question again - is it possible to create a list box with data from the database - but only with the data i need - or better - to modify the list box and sort out whats relevant or not?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Mar 2010 09:28:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-Data-from-a-database-table/m-p/172659#M42137</guid>
      <dc:creator />
      <dc:date>2010-03-09T09:28:09Z</dc:date>
    </item>
    <item>
      <title>Remove Data from a database table?</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-Data-from-a-database-table/m-p/172660#M42138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I think u can use expression in the list box to reduce the data in the list box.&lt;/P&gt;&lt;P&gt;Hope this will help you.&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Mar 2010 09:37:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-Data-from-a-database-table/m-p/172660#M42138</guid>
      <dc:creator />
      <dc:date>2010-03-09T09:37:43Z</dc:date>
    </item>
    <item>
      <title>Remove Data from a database table?</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-Data-from-a-database-table/m-p/172661#M42139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What you mean by expressions? The search function?&lt;BR /&gt;Is there no way to show ONLY the relevant data i needed?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Mar 2010 10:20:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-Data-from-a-database-table/m-p/172661#M42139</guid>
      <dc:creator />
      <dc:date>2010-03-09T10:20:29Z</dc:date>
    </item>
    <item>
      <title>Remove Data from a database table?</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-Data-from-a-database-table/m-p/172662#M42140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In the new list box dialogue box you can select in filed option as expression and&lt;/P&gt;&lt;P&gt;then you can show ONLY the relevant data you needed according to condition inthe expression .&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Mar 2010 10:30:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-Data-from-a-database-table/m-p/172662#M42140</guid>
      <dc:creator />
      <dc:date>2010-03-09T10:30:07Z</dc:date>
    </item>
    <item>
      <title>Remove Data from a database table?</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-Data-from-a-database-table/m-p/172663#M42141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Let's say you have a field CompanyName in your database you want to use. Let's say you only want to display in a listbox those who start with "AA-". You can create a new object in the sheet, and in the Field option under General tab, click on the dropdown menu and select "Expression". A new dialog will be opened, and now write&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;IF(LEFT(CompanyName, 2) = 'AA-', CompanyName)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;You will get now in that listbox only those companies starting with 'AA-'. &lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Mar 2010 10:31:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-Data-from-a-database-table/m-p/172663#M42141</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2010-03-09T10:31:55Z</dc:date>
    </item>
    <item>
      <title>Remove Data from a database table?</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-Data-from-a-database-table/m-p/172664#M42142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, now i got it - but not really ...&lt;/P&gt;&lt;P&gt;What you mean with (....., 2) ? why the 2?&lt;/P&gt;&lt;P&gt;In my table named contract_partner i will only show the partner, which beginning with RTS.&lt;/P&gt;&lt;P&gt;So i tried:&lt;/P&gt;&lt;P&gt;IF(LEFT(contract_partner, 2) = 'RTS'. contract_partner)&lt;/P&gt;&lt;P&gt;but now, nothing shows up &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Please help and thanks for the replies!&lt;/P&gt;&lt;P&gt;&lt;A&gt;&lt;BR /&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Mar 2010 15:35:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-Data-from-a-database-table/m-p/172664#M42142</guid>
      <dc:creator />
      <dc:date>2010-03-09T15:35:06Z</dc:date>
    </item>
    <item>
      <title>Remove Data from a database table?</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-Data-from-a-database-table/m-p/172665#M42143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No help?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Mar 2010 19:20:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-Data-from-a-database-table/m-p/172665#M42143</guid>
      <dc:creator />
      <dc:date>2010-03-09T19:20:47Z</dc:date>
    </item>
    <item>
      <title>Remove Data from a database table?</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-Data-from-a-database-table/m-p/172666#M42144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Shouldn't it be IF(LEFT(contract_partner, 3) = 'RTS'. contract_partner)&lt;/P&gt;&lt;P&gt;2 looks at only two chars not three. So change it to 3 or change rts to rt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Mar 2010 20:59:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-Data-from-a-database-table/m-p/172666#M42144</guid>
      <dc:creator />
      <dc:date>2010-03-09T20:59:50Z</dc:date>
    </item>
    <item>
      <title>Remove Data from a database table?</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-Data-from-a-database-table/m-p/172667#M42145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank for your help guys!&lt;/P&gt;&lt;P&gt;Its working now!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Mar 2010 08:22:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-Data-from-a-database-table/m-p/172667#M42145</guid>
      <dc:creator />
      <dc:date>2010-03-10T08:22:25Z</dc:date>
    </item>
  </channel>
</rss>

