<?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 How to de-associate null cells when converting Crosstable? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-de-associate-null-cells-when-converting-Crosstable/m-p/396457#M698148</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know how to de-associate null cells when converting crosstable?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say that the Data area has some null cells in the crosstable.&lt;/P&gt;&lt;P&gt;When I convert this crosstable to QV, the association between the Qualifier Fields and Attribute Field always exists no matter the data field is null or what.&lt;/P&gt;&lt;P&gt;The result would cause that even some Select Fields have no relationship at all, they are still associated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I want is to eliminate these associations.&lt;/P&gt;&lt;P&gt;Can anyone help?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you all very much in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Patrick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Feb 2013 04:20:51 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-02-04T04:20:51Z</dc:date>
    <item>
      <title>How to de-associate null cells when converting Crosstable?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-de-associate-null-cells-when-converting-Crosstable/m-p/396457#M698148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know how to de-associate null cells when converting crosstable?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say that the Data area has some null cells in the crosstable.&lt;/P&gt;&lt;P&gt;When I convert this crosstable to QV, the association between the Qualifier Fields and Attribute Field always exists no matter the data field is null or what.&lt;/P&gt;&lt;P&gt;The result would cause that even some Select Fields have no relationship at all, they are still associated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I want is to eliminate these associations.&lt;/P&gt;&lt;P&gt;Can anyone help?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you all very much in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Patrick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2013 04:20:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-de-associate-null-cells-when-converting-Crosstable/m-p/396457#M698148</guid>
      <dc:creator />
      <dc:date>2013-02-04T04:20:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to de-associate null cells when converting Crosstable?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-de-associate-null-cells-when-converting-Crosstable/m-p/396458#M698149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Patrick,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I overcame this problem by performing a resident load of the resulting crosstable and applying a where clause to test that the length of the field &amp;gt;0.&amp;nbsp; Note that I had to specify noconcatenate on the resident load as per this forum post:&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" class="loading" href="https://community.qlik.com/message/296747"&gt;http://community.qlik.com/message/296747&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's my code.&amp;nbsp; Hope this helps,&lt;/P&gt;&lt;P&gt;Rav&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sourcetable:&lt;/P&gt;&lt;P&gt;CrossTable(Category, Data, 3)&lt;/P&gt;&lt;P&gt;LOAD FolderID, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NoteID, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NoteDate, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MA,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NY,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CA,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IL,&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;test_crosstable.txt&lt;/P&gt;&lt;P&gt;(txt, codepage is 1252, embedded labels, delimiter is '\t', msq);&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;cross_no_null:&lt;/P&gt;&lt;P&gt;noconcatenate LOAD FolderID, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NoteID, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NoteDate, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; State, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Data&lt;/P&gt;&lt;P&gt;resident sourcetable&lt;/P&gt;&lt;P&gt;WHERE(len (Data)&amp;gt;0);&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;drop table sourcetable;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jun 2013 21:40:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-de-associate-null-cells-when-converting-Crosstable/m-p/396458#M698149</guid>
      <dc:creator />
      <dc:date>2013-06-11T21:40:40Z</dc:date>
    </item>
  </channel>
</rss>

