<?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: null values go missing on transpose in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/null-values-go-missing-on-transpose/m-p/1668395#M594551</link>
    <description>&lt;P&gt;hi stoyan,&lt;BR /&gt;&lt;BR /&gt;thanks for your reply!&lt;BR /&gt;&lt;BR /&gt;my question is somewhat related to this one:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/t5/QlikView-App-Development/NullInterpret-for-Excel-sources/td-p/1514081" target="_blank"&gt;https://community.qlik.com/t5/QlikView-App-Development/NullInterpret-for-Excel-sources/td-p/1514081&lt;/A&gt;&lt;/P&gt;&lt;P&gt;i think that&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;tmp_map:
mapping load
  ''     as a,
  null() as b
autogenerate 1;

map * using tmp_map;&lt;/LI-CODE&gt;&lt;P&gt;can be considered as something like 'ValueAsNull'.&lt;/P&gt;</description>
    <pubDate>Thu, 23 Jan 2020 08:41:44 GMT</pubDate>
    <dc:creator>Quodly</dc:creator>
    <dc:date>2020-01-23T08:41:44Z</dc:date>
    <item>
      <title>null values go missing on transpose</title>
      <link>https://community.qlik.com/t5/QlikView/null-values-go-missing-on-transpose/m-p/1668010#M594549</link>
      <description>&lt;P&gt;null values are not recognised as such when applying&lt;/P&gt;&lt;P&gt;&lt;EM&gt;filters(transpose())&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;on an xlsx load.&lt;/P&gt;&lt;P&gt;can one interpret these blanks as nulls without specifying fields?&lt;/P&gt;&lt;P&gt;please see the attached files.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 01:26:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values-go-missing-on-transpose/m-p/1668010#M594549</guid>
      <dc:creator>Quodly</dc:creator>
      <dc:date>2024-11-16T01:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: null values go missing on transpose</title>
      <link>https://community.qlik.com/t5/QlikView/null-values-go-missing-on-transpose/m-p/1668031#M594550</link>
      <description>&lt;P&gt;Hi Quodly,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First - that's one interesting finding. Seems QV replaces nulls with empty values on the back-end when doing data transposition.&lt;/P&gt;&lt;P&gt;You are probably searching for a function that does something like 'ValueAsNull'. But to my knowledge, there isn't any.&lt;/P&gt;&lt;P&gt;You can automatically get all the columns in a source (if it's Qvd - use load as an XML, if it's excel - ODBC + SQLColumns;) and for each of the number of columns in your source do something like:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;If([$(vColumnName)]='', null(),[$(vColumnName)]) as [$(vColumnName)]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That way you can work with variable number of columns. But this could be overdoing it a bit.&lt;/P&gt;&lt;P&gt;You can unify all nulls doing this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;NullAsValue *;

Set NullValue = '';&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And at least make sure that all nulls are empty strings now.&lt;/P&gt;&lt;P&gt;I hope that helps!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;S.T.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jan 2020 09:27:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values-go-missing-on-transpose/m-p/1668031#M594550</guid>
      <dc:creator>Stoyan_Terziev</dc:creator>
      <dc:date>2020-01-22T09:27:55Z</dc:date>
    </item>
    <item>
      <title>Re: null values go missing on transpose</title>
      <link>https://community.qlik.com/t5/QlikView/null-values-go-missing-on-transpose/m-p/1668395#M594551</link>
      <description>&lt;P&gt;hi stoyan,&lt;BR /&gt;&lt;BR /&gt;thanks for your reply!&lt;BR /&gt;&lt;BR /&gt;my question is somewhat related to this one:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/t5/QlikView-App-Development/NullInterpret-for-Excel-sources/td-p/1514081" target="_blank"&gt;https://community.qlik.com/t5/QlikView-App-Development/NullInterpret-for-Excel-sources/td-p/1514081&lt;/A&gt;&lt;/P&gt;&lt;P&gt;i think that&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;tmp_map:
mapping load
  ''     as a,
  null() as b
autogenerate 1;

map * using tmp_map;&lt;/LI-CODE&gt;&lt;P&gt;can be considered as something like 'ValueAsNull'.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2020 08:41:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values-go-missing-on-transpose/m-p/1668395#M594551</guid>
      <dc:creator>Quodly</dc:creator>
      <dc:date>2020-01-23T08:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: null values go missing on transpose</title>
      <link>https://community.qlik.com/t5/QlikView/null-values-go-missing-on-transpose/m-p/1677199#M594552</link>
      <description>&lt;P&gt;Well, not sure this is really going to help, but I am going to toss it out anyway:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-Documents/NULL-handling-in-QlikView/ta-p/1484472" target="_blank"&gt;https://community.qlik.com/t5/QlikView-Documents/NULL-handling-in-QlikView/ta-p/1484472&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;There is a Technical doc attached and also some Design Blog posts as URLs too, hopefully one of them may help you get things sorted.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2020 17:04:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values-go-missing-on-transpose/m-p/1677199#M594552</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2020-02-19T17:04:17Z</dc:date>
    </item>
  </channel>
</rss>

