<?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: How to replace hyphen or ' - ' with 'No Data' in a Pivot Table? in Visualization and Usability</title>
    <link>https://community.qlik.com/t5/Visualization-and-Usability/How-to-replace-hyphen-or-with-No-Data-in-a-Pivot-Table/m-p/1583932#M136397</link>
    <description>&lt;P&gt;Is there any solution ? I am also looking for the same solution to replace hyphen with 0 or 'No Data'.&lt;/P&gt;</description>
    <pubDate>Thu, 23 May 2019 13:36:37 GMT</pubDate>
    <dc:creator>eng19872</dc:creator>
    <dc:date>2019-05-23T13:36:37Z</dc:date>
    <item>
      <title>How to replace hyphen or ' - ' with 'No Data' in a Pivot Table?</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/How-to-replace-hyphen-or-with-No-Data-in-a-Pivot-Table/m-p/1117347#M63310</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 the following example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="134675" alt="" class="jive-image image-1" height="380" src="https://community.qlik.com/legacyfs/online/134675_pastedImage_0.png" style="max-width: 1200px; max-height: 900px; height: 380px; width: 624.832px;" width="625" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I replace the Dashes with 'No Data' instead?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried this as a Measure but it does not work: If(Num(Sum(LineSalesAmount), '$##,###.00')=Null(), 'No Data', Num(Sum(LineSalesAmount), '$##,###.00'))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2016 15:40:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/How-to-replace-hyphen-or-with-No-Data-in-a-Pivot-Table/m-p/1117347#M63310</guid>
      <dc:creator>jblomqvist</dc:creator>
      <dc:date>2016-08-16T15:40:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to replace hyphen or ' - ' with 'No Data' in a Pivot Table?</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/How-to-replace-hyphen-or-with-No-Data-in-a-Pivot-Table/m-p/1117348#M63311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this please:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=If(IsNull(Num(Sum(LineSalesAmount))), 'No Data', Num(Sum(LineSalesAmount), '$##,###.00'))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;If you make some change in your script it will make you easier to understand the expression like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[YourTable]:&lt;/P&gt;&lt;P&gt;LOAD&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt; &lt;/STRONG&gt;Num(Sum(LineSalesAmount)) as &lt;STRONG&gt;TotalNumSales&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;FROM [yourconnection];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By using TotalNumSales you can make the expression in pivot table like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=If(IsNull(&lt;STRONG&gt;TotalNumSales&lt;/STRONG&gt;), 'No Data',&lt;STRONG&gt; TotalNumSales&lt;/STRONG&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;MB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2016 16:36:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/How-to-replace-hyphen-or-with-No-Data-in-a-Pivot-Table/m-p/1117348#M63311</guid>
      <dc:creator>miguelbraga</dc:creator>
      <dc:date>2016-08-16T16:36:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to replace hyphen or ' - ' with 'No Data' in a Pivot Table?</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/How-to-replace-hyphen-or-with-No-Data-in-a-Pivot-Table/m-p/1117349#M63312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;If(IsNull(Sum(LineSalesAmount)),'No Data',Num(Sum(LineSalesAmount), '$##,###.00'))&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2016 17:14:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/How-to-replace-hyphen-or-with-No-Data-in-a-Pivot-Table/m-p/1117349#M63312</guid>
      <dc:creator>TKendrick20</dc:creator>
      <dc:date>2016-08-16T17:14:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to replace hyphen or ' - ' with 'No Data' in a Pivot Table?</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/How-to-replace-hyphen-or-with-No-Data-in-a-Pivot-Table/m-p/1117350#M63313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Pivot table Presentation tab have two field "Null Symbol" and "Missing Symbol", just change there what you what to show in null field or missing field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Aug 2016 10:10:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/How-to-replace-hyphen-or-with-No-Data-in-a-Pivot-Table/m-p/1117350#M63313</guid>
      <dc:creator>yadhunandhanan</dc:creator>
      <dc:date>2016-08-17T10:10:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to replace hyphen or ' - ' with 'No Data' in a Pivot Table?</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/How-to-replace-hyphen-or-with-No-Data-in-a-Pivot-Table/m-p/1117351#M63314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Yadhunandhanan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your solution works for Qlik Sense , If yes, where that option comes ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Aug 2016 11:05:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/How-to-replace-hyphen-or-with-No-Data-in-a-Pivot-Table/m-p/1117351#M63314</guid>
      <dc:creator />
      <dc:date>2016-08-17T11:05:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to replace hyphen or ' - ' with 'No Data' in a Pivot Table?</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/How-to-replace-hyphen-or-with-No-Data-in-a-Pivot-Table/m-p/1117352#M63315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry Rohit. My solution is not for Qlik Sense. Its for QlikView.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Aug 2016 12:01:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/How-to-replace-hyphen-or-with-No-Data-in-a-Pivot-Table/m-p/1117352#M63315</guid>
      <dc:creator>yadhunandhanan</dc:creator>
      <dc:date>2016-08-17T12:01:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to replace hyphen or ' - ' with 'No Data' in a Pivot Table?</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/How-to-replace-hyphen-or-with-No-Data-in-a-Pivot-Table/m-p/1117353#M63316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does anybody know what the solution is for Qlik Sense?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2018 15:08:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/How-to-replace-hyphen-or-with-No-Data-in-a-Pivot-Table/m-p/1117353#M63316</guid>
      <dc:creator>jumuravchik</dc:creator>
      <dc:date>2018-10-18T15:08:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to replace hyphen or ' - ' with 'No Data' in a Pivot Table?</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/How-to-replace-hyphen-or-with-No-Data-in-a-Pivot-Table/m-p/1583932#M136397</link>
      <description>&lt;P&gt;Is there any solution ? I am also looking for the same solution to replace hyphen with 0 or 'No Data'.&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 13:36:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/How-to-replace-hyphen-or-with-No-Data-in-a-Pivot-Table/m-p/1583932#M136397</guid>
      <dc:creator>eng19872</dc:creator>
      <dc:date>2019-05-23T13:36:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to replace hyphen or ' - ' with 'No Data' in a Pivot Table?</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/How-to-replace-hyphen-or-with-No-Data-in-a-Pivot-Table/m-p/1619532#M145174</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Did you get any solution for this? I also facing the same issue, and need the solution.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Madhab&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 11:17:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/How-to-replace-hyphen-or-with-No-Data-in-a-Pivot-Table/m-p/1619532#M145174</guid>
      <dc:creator>Madhab77</dc:creator>
      <dc:date>2019-09-03T11:17:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to replace hyphen or ' - ' with 'No Data' in a Pivot Table?</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/How-to-replace-hyphen-or-with-No-Data-in-a-Pivot-Table/m-p/1620567#M145431</link>
      <description>&lt;P&gt;Yes, I resolved. Here is the solution&lt;/P&gt;&lt;P&gt;If(write your expression, true, ' ')&lt;/P&gt;</description>
      <pubDate>Thu, 05 Sep 2019 13:22:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/How-to-replace-hyphen-or-with-No-Data-in-a-Pivot-Table/m-p/1620567#M145431</guid>
      <dc:creator>eng19872</dc:creator>
      <dc:date>2019-09-05T13:22:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to replace hyphen or ' - ' with 'No Data' in a Pivot Table?</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/How-to-replace-hyphen-or-with-No-Data-in-a-Pivot-Table/m-p/1621509#M145669</link>
      <description>&lt;P&gt;Hi Eng19872,&lt;/P&gt;&lt;P&gt;Thanks for the update, but unfortunately, it does not work. My Pivote table is a bit complicated one! If you analyse my screenshot of the table, you will find that, for a particular date there is no record, but in the next date records are there, so qlik is writing that records, which are available, but where there is no records, qlik simply putting a dash('-'). I think it is qlik's internal setting, like excel the default it keeps blank.&lt;/P&gt;&lt;P&gt;Thanks, Madhab.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2019 08:58:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/How-to-replace-hyphen-or-with-No-Data-in-a-Pivot-Table/m-p/1621509#M145669</guid>
      <dc:creator>Madhab77</dc:creator>
      <dc:date>2019-09-09T08:58:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to replace hyphen or ' - ' with 'No Data' in a Pivot Table?</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/How-to-replace-hyphen-or-with-No-Data-in-a-Pivot-Table/m-p/1621520#M145671</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have you tried using the ALT function?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/sense/June2019/Subsystems/Hub/Content/Sense_Hub/Scripting/ConditionalFunctions/alt.htm" target="_blank"&gt;https://help.qlik.com/en-US/sense/June2019/Subsystems/Hub/Content/Sense_Hub/Scripting/ConditionalFunctions/alt.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Simon&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2019 09:18:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/How-to-replace-hyphen-or-with-No-Data-in-a-Pivot-Table/m-p/1621520#M145671</guid>
      <dc:creator>simon_minifie</dc:creator>
      <dc:date>2019-09-09T09:18:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to replace hyphen or ' - ' with 'No Data' in a Pivot Table?</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/How-to-replace-hyphen-or-with-No-Data-in-a-Pivot-Table/m-p/1621530#M145676</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/29696"&gt;@simon_minifie&lt;/a&gt;&amp;nbsp;,&amp;nbsp; thanks for the update,. Yes, I tried with that also, but no luck.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2019 09:33:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/How-to-replace-hyphen-or-with-No-Data-in-a-Pivot-Table/m-p/1621530#M145676</guid>
      <dc:creator>Madhab77</dc:creator>
      <dc:date>2019-09-09T09:33:46Z</dc:date>
    </item>
  </channel>
</rss>

