<?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 the dash in the table by NA? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-replace-the-dash-in-the-table-by-NA/m-p/1906952#M74749</link>
    <description>&lt;P&gt;Try:&lt;BR /&gt;NullAsValue Yourtable;&lt;BR /&gt;NullValue = 'NA';&lt;/P&gt;
&lt;P&gt;Before you Load this table&lt;/P&gt;</description>
    <pubDate>Fri, 18 Mar 2022 11:54:36 GMT</pubDate>
    <dc:creator>chris_djih</dc:creator>
    <dc:date>2022-03-18T11:54:36Z</dc:date>
    <item>
      <title>How to replace the dash in the table by NA?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-replace-the-dash-in-the-table-by-NA/m-p/1906461#M74720</link>
      <description>&lt;P&gt;Hi Team ,&lt;/P&gt;
&lt;P&gt;I want to replace the dash value with NA and the Blank as NA .&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="userpd_2021_0-1647514100633.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/74718iA5AFF56ECE3ADCE1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="userpd_2021_0-1647514100633.png" alt="userpd_2021_0-1647514100633.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I tried using the expression in the script.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;if(IsNUll(NAME) = -1 or NAME='blank', 'NA', NAME)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;If(isnull(&lt;SPAN&gt;NAME&lt;/SPAN&gt;) or &lt;SPAN&gt;NAME&lt;/SPAN&gt; ='blank','&lt;SPAN&gt;NA&lt;/SPAN&gt;',&lt;SPAN&gt;NAME&lt;/SPAN&gt;) AS &lt;SPAN&gt;NAME&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I am not able to get the correct output. Also when through the community questions but this not work for me.&lt;/SPAN&gt;&lt;/P&gt;
&lt;DIV class="view-original-post-link"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2022 10:53:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-replace-the-dash-in-the-table-by-NA/m-p/1906461#M74720</guid>
      <dc:creator>userpd_2021</dc:creator>
      <dc:date>2022-03-17T10:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to replace the dash in the table by NA?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-replace-the-dash-in-the-table-by-NA/m-p/1906467#M74721</link>
      <description>&lt;P&gt;If these values are missing - that is, there are no values for the intersection in your table - you won't be able to replace them with anything else directly. Some extensions will allow you to set a default null symbol that is not the native-default dash, if that's a direction you want to take.&lt;/P&gt;
&lt;P&gt;If the values aren't missing intersections, but actual field results, you can use e.g. if(isnull(NAME),'NA',name), as you described above, so I'm guessing these are actually missing values rather than a row with a field that is null.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2022 11:07:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-replace-the-dash-in-the-table-by-NA/m-p/1906467#M74721</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2022-03-17T11:07:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to replace the dash in the table by NA?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-replace-the-dash-in-the-table-by-NA/m-p/1906474#M74722</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Try like this&lt;/P&gt;
&lt;P&gt;IF (LEN(TRIM(&lt;I&gt;NAME&lt;/I&gt;) )= 0, 'NA' ,&amp;nbsp;&lt;I&gt;NAME&lt;/I&gt;)&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2022 11:18:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-replace-the-dash-in-the-table-by-NA/m-p/1906474#M74722</guid>
      <dc:creator>Iswarya_</dc:creator>
      <dc:date>2022-03-17T11:18:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to replace the dash in the table by NA?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-replace-the-dash-in-the-table-by-NA/m-p/1906952#M74749</link>
      <description>&lt;P&gt;Try:&lt;BR /&gt;NullAsValue Yourtable;&lt;BR /&gt;NullValue = 'NA';&lt;/P&gt;
&lt;P&gt;Before you Load this table&lt;/P&gt;</description>
      <pubDate>Fri, 18 Mar 2022 11:54:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-replace-the-dash-in-the-table-by-NA/m-p/1906952#M74749</guid>
      <dc:creator>chris_djih</dc:creator>
      <dc:date>2022-03-18T11:54:36Z</dc:date>
    </item>
  </channel>
</rss>

