<?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 can we exclude '--' from the data. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-can-we-exclude-from-the-data/m-p/299254#M1186101</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to exclude the -- from the given data. Could any one please help me to do this. Its in table and want to exclude in designer part not thru the scripting part. Is this possible to write an expression in designer part which will exclude the -- from the table.&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;&lt;/P&gt;&lt;P&gt;Shubham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Sep 2011 10:02:48 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2011-09-29T10:02:48Z</dc:date>
    <item>
      <title>How can we exclude '--' from the data.</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-we-exclude-from-the-data/m-p/299254#M1186101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to exclude the -- from the given data. Could any one please help me to do this. Its in table and want to exclude in designer part not thru the scripting part. Is this possible to write an expression in designer part which will exclude the -- from the table.&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;&lt;/P&gt;&lt;P&gt;Shubham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2011 10:02:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-we-exclude-from-the-data/m-p/299254#M1186101</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-09-29T10:02:48Z</dc:date>
    </item>
    <item>
      <title>How can we exclude '--' from the data.</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-we-exclude-from-the-data/m-p/299255#M1186102</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;&amp;nbsp;&amp;nbsp;&amp;nbsp; Try this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =purgechar( 'Field_Name','--' )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2011 10:12:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-we-exclude-from-the-data/m-p/299255#M1186102</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2011-09-29T10:12:22Z</dc:date>
    </item>
    <item>
      <title>How can we exclude '--' from the data.</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-we-exclude-from-the-data/m-p/299256#M1186103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi Solanki,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried but it doesn't exclude '--' data from the table. It shows and I want this shouldn't come in to the picture or table. the Entire data should come excluding ''--'' part. FYI.. this is also a field value. Its not a null character.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shubham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2011 10:30:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-we-exclude-from-the-data/m-p/299256#M1186103</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-09-29T10:30:43Z</dc:date>
    </item>
    <item>
      <title>How can we exclude '--' from the data.</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-we-exclude-from-the-data/m-p/299257#M1186104</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;Are you talking about nulls, or fields that contain '--'?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to elimate nulls, it depends on the data source.For example &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD field1, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; field2&lt;/P&gt;&lt;P&gt;FROM data.xls (biff)&lt;/P&gt;&lt;P&gt;Where Len(field2) &amp;gt; 0;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think the purgechar way will also remove any single hyphens. You could also use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Replace(Field1, '--', '') &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will not remove single hyphens.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2011 10:37:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-we-exclude-from-the-data/m-p/299257#M1186104</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2011-09-29T10:37:11Z</dc:date>
    </item>
    <item>
      <title>How can we exclude '--' from the data.</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-we-exclude-from-the-data/m-p/299258#M1186105</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;&amp;nbsp;&amp;nbsp;&amp;nbsp; Then as Jonathan suggested you can use the Replace() Function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If still it doesnt solve your problem then please upload a sample file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2011 10:42:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-we-exclude-from-the-data/m-p/299258#M1186105</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2011-09-29T10:42:33Z</dc:date>
    </item>
    <item>
      <title>How can we exclude '--' from the data.</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-we-exclude-from-the-data/m-p/299259#M1186106</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;Do you mean to exclude records with a field containing '--'. Then use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD ....&lt;/P&gt;&lt;P&gt;FROM ....&lt;/P&gt;&lt;P&gt;Where Field1 &amp;lt;&amp;gt; '--';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD ...&lt;/P&gt;&lt;P&gt;FROM ...&lt;/P&gt;&lt;P&gt;Where Index(Field1, '--');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are loading via SQL SELECT, then the where clause will depend on your database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2011 10:44:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-we-exclude-from-the-data/m-p/299259#M1186106</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2011-09-29T10:44:52Z</dc:date>
    </item>
    <item>
      <title>How can we exclude '--' from the data.</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-we-exclude-from-the-data/m-p/299260#M1186107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi Jonathan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply. But only the thing is I wanted to do all this in designer part without touching the scripting. While loading the data it is possible, I know but I want in designer part. Is this possible.??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shubham Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2011 11:02:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-we-exclude-from-the-data/m-p/299260#M1186107</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-09-29T11:02:11Z</dc:date>
    </item>
    <item>
      <title>How can we exclude '--' from the data.</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-we-exclude-from-the-data/m-p/299261#M1186108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; ﻿Shubham&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you need to be specific about the sheet object(s), dimensions and metrics involved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2011 14:15:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-we-exclude-from-the-data/m-p/299261#M1186108</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2011-09-29T14:15:20Z</dc:date>
    </item>
    <item>
      <title>Re: How can we exclude '--' from the data.</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-we-exclude-from-the-data/m-p/299262#M1186109</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;&amp;nbsp;&amp;nbsp;&amp;nbsp; Have a look at the example. Hope this will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Sep 2011 05:58:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-we-exclude-from-the-data/m-p/299262#M1186109</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2011-09-30T05:58:10Z</dc:date>
    </item>
    <item>
      <title>Re: How can we exclude '--' from the data.</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-we-exclude-from-the-data/m-p/299263#M1186110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Satish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here I am attaching the problem, actually I want to exclude the '--' which is one kind of field in data (table) if you will have a look on the attachemnt, the circled marked need not to be shown there, it should be excluded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shubham Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Sep 2011 08:52:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-we-exclude-from-the-data/m-p/299263#M1186110</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-09-30T08:52:51Z</dc:date>
    </item>
    <item>
      <title>Re: How can we exclude '--' from the data.</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-we-exclude-from-the-data/m-p/299264#M1186111</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;&amp;nbsp;&amp;nbsp;&amp;nbsp; Let us consider that the field contained '--' is Field1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Now when you take textbox for that field you will see the value '--'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; But to exclude that value you must use the expression listbox (i.e Create a new sheet object -&amp;gt; listbox -&amp;gt; properties- &amp;gt;fields -&amp;gt; select Expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Type &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; =if(Field1 &amp;lt;&amp;gt; '--',Field1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Same way you should use the expression in chart if you use that field in chart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Sep 2011 09:36:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-we-exclude-from-the-data/m-p/299264#M1186111</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2011-09-30T09:36:41Z</dc:date>
    </item>
  </channel>
</rss>

