<?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: Table Box/ Straight Table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Table-Box-Straight-Table/m-p/646777#M1058096</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tabla:&lt;/P&gt;&lt;P&gt;SQL&lt;/P&gt;&lt;P&gt;SELECT *&lt;/P&gt;&lt;P&gt;FROM TABLE;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then in the resident load use the expression given by Manish.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;If(IsNull(MODEL) or LEN(TRIM(MODEL))=0,NULL(),1) as MODEL&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;RESIDENT Tabla;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Hope it helps!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Regards&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Oct 2014 18:02:17 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-10-16T18:02:17Z</dc:date>
    <item>
      <title>Table Box/ Straight Table</title>
      <link>https://community.qlik.com/t5/QlikView/Table-Box-Straight-Table/m-p/646773#M1058092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a table box consisting of fields:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[NAME]&amp;nbsp;&amp;nbsp; [GUID]&amp;nbsp;&amp;nbsp; [USER_ID]&amp;nbsp;&amp;nbsp; [MODEL]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I only want the table to populate results if the "Model" field is not null based on the selection criteria.&lt;/P&gt;&lt;P&gt;How can I do this? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Oct 2014 16:49:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-Box-Straight-Table/m-p/646773#M1058092</guid>
      <dc:creator />
      <dc:date>2014-10-16T16:49:09Z</dc:date>
    </item>
    <item>
      <title>Re: Table Box/ Straight Table</title>
      <link>https://community.qlik.com/t5/QlikView/Table-Box-Straight-Table/m-p/646774#M1058093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Think of maybe creating a straight table instead and suppressing nulls on the Model field&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Oct 2014 16:53:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-Box-Straight-Table/m-p/646774#M1058093</guid>
      <dc:creator>simondachstr</dc:creator>
      <dc:date>2014-10-16T16:53:00Z</dc:date>
    </item>
    <item>
      <title>Re: Table Box/ Straight Table</title>
      <link>https://community.qlik.com/t5/QlikView/Table-Box-Straight-Table/m-p/646775#M1058094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Instead of MODEL use below &lt;/P&gt;&lt;P&gt;If(IsNull(MODEL) or LEN(TRIM(MODEL))=0,NULL(),1) as MODEL&lt;/P&gt;&lt;P&gt;Now create a table box and go to presentation tab...&lt;/P&gt;&lt;P&gt;SELECT MODEL and tick Omit Rows Where field is NULL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Oct 2014 16:54:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-Box-Straight-Table/m-p/646775#M1058094</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-10-16T16:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: Table Box/ Straight Table</title>
      <link>https://community.qlik.com/t5/QlikView/Table-Box-Straight-Table/m-p/646776#M1058095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi Manish&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm pulling the MODEL field from a SQL table so therefore I can't use the QV expresion.&lt;/P&gt;&lt;P&gt;Or should I first get it from SQL then write the expression to recreate the field?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Oct 2014 17:12:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-Box-Straight-Table/m-p/646776#M1058095</guid>
      <dc:creator />
      <dc:date>2014-10-16T17:12:36Z</dc:date>
    </item>
    <item>
      <title>Re: Table Box/ Straight Table</title>
      <link>https://community.qlik.com/t5/QlikView/Table-Box-Straight-Table/m-p/646777#M1058096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tabla:&lt;/P&gt;&lt;P&gt;SQL&lt;/P&gt;&lt;P&gt;SELECT *&lt;/P&gt;&lt;P&gt;FROM TABLE;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then in the resident load use the expression given by Manish.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;If(IsNull(MODEL) or LEN(TRIM(MODEL))=0,NULL(),1) as MODEL&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;RESIDENT Tabla;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Hope it helps!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Regards&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Oct 2014 18:02:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-Box-Straight-Table/m-p/646777#M1058096</guid>
      <dc:creator />
      <dc:date>2014-10-16T18:02:17Z</dc:date>
    </item>
  </channel>
</rss>

