<?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 Convert Nulls in pivot table to blanks in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Convert-Nulls-in-pivot-table-to-blanks/m-p/70645#M4685</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi I want to use set analysis to change null values in my pivot table to blanks. I want to do this in the front end and not in the load editor script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried detecting nulls and setting them equal 'blank' but it doesnt seem to be working. Nulls in my pivot are still being represented as a greyed out box with '-'in them. Any help would be greatly appreciated!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attempted Code:&lt;/P&gt;&lt;P&gt;if(Sum({&amp;lt;Region=,County=,[StationName]=&amp;gt;}[Invoice Doses Qty])=0 OR&lt;/P&gt;&lt;P&gt;IsNull(Sum({&amp;lt;Region=,County=,[StationName]=&amp;gt;}[Invoice Doses Qty])),'',&lt;/P&gt;&lt;P&gt;Sum({&amp;lt;Region=,County=,[StationName]=&amp;gt;}[Invoice Doses Qty]))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 May 2018 10:25:36 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-05-22T10:25:36Z</dc:date>
    <item>
      <title>Convert Nulls in pivot table to blanks</title>
      <link>https://community.qlik.com/t5/App-Development/Convert-Nulls-in-pivot-table-to-blanks/m-p/70645#M4685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi I want to use set analysis to change null values in my pivot table to blanks. I want to do this in the front end and not in the load editor script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried detecting nulls and setting them equal 'blank' but it doesnt seem to be working. Nulls in my pivot are still being represented as a greyed out box with '-'in them. Any help would be greatly appreciated!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attempted Code:&lt;/P&gt;&lt;P&gt;if(Sum({&amp;lt;Region=,County=,[StationName]=&amp;gt;}[Invoice Doses Qty])=0 OR&lt;/P&gt;&lt;P&gt;IsNull(Sum({&amp;lt;Region=,County=,[StationName]=&amp;gt;}[Invoice Doses Qty])),'',&lt;/P&gt;&lt;P&gt;Sum({&amp;lt;Region=,County=,[StationName]=&amp;gt;}[Invoice Doses Qty]))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2018 10:25:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Convert-Nulls-in-pivot-table-to-blanks/m-p/70645#M4685</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-22T10:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Nulls in pivot table to blanks</title>
      <link>https://community.qlik.com/t5/App-Development/Convert-Nulls-in-pivot-table-to-blanks/m-p/70646#M4686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this instead&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;if(&lt;STRONG&gt;len(trim(Sum({&amp;lt;Region=,County=,[StationName]=&amp;gt;}[Invoice Doses Qty])))=0&lt;/STRONG&gt;,'',&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Sum({&amp;lt;Region=,County=,[StationName]=&amp;gt;}[Invoice Doses Qty]))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2018 10:28:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Convert-Nulls-in-pivot-table-to-blanks/m-p/70646#M4686</guid>
      <dc:creator>YoussefBelloum</dc:creator>
      <dc:date>2018-05-22T10:28:01Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Nulls in pivot table to blanks</title>
      <link>https://community.qlik.com/t5/App-Development/Convert-Nulls-in-pivot-table-to-blanks/m-p/70647#M4687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the quick response! When i try this it actually turns all the Null or 0 values to a greyed out '-' box. Which i assume represents Null. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2018 10:52:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Convert-Nulls-in-pivot-table-to-blanks/m-p/70647#M4687</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-22T10:52:07Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Nulls in pivot table to blanks</title>
      <link>https://community.qlik.com/t5/App-Development/Convert-Nulls-in-pivot-table-to-blanks/m-p/70648#M4688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the expression above replace NULL and BLANK values with a blank.. so you should not see '-' anymore on the table..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2018 11:55:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Convert-Nulls-in-pivot-table-to-blanks/m-p/70648#M4688</guid>
      <dc:creator>YoussefBelloum</dc:creator>
      <dc:date>2018-05-22T11:55:07Z</dc:date>
    </item>
  </channel>
</rss>

