<?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: if problem in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/if-problem/m-p/711285#M677662</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;You can replace null with zeros.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look at the attached application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Jun 2014 09:42:13 GMT</pubDate>
    <dc:creator>ashfaq_haseeb</dc:creator>
    <dc:date>2014-06-19T09:42:13Z</dc:date>
    <item>
      <title>if problem</title>
      <link>https://community.qlik.com/t5/QlikView/if-problem/m-p/711280#M677657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi everyone!!&lt;/P&gt;&lt;P&gt;i'm working on this data and i've got this column called "yearmonthresolution", but as you can see there are some cells that not contain dates but only a "-". so someone can suggest me what kind of string should i use to replace all the "-" with "open".&lt;/P&gt;&lt;P&gt;Thanks&lt;IMG alt="1.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/60866_1.JPG.jpg" /&gt;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2014 09:29:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/if-problem/m-p/711280#M677657</guid>
      <dc:creator />
      <dc:date>2014-06-19T09:29:10Z</dc:date>
    </item>
    <item>
      <title>Re: if problem</title>
      <link>https://community.qlik.com/t5/QlikView/if-problem/m-p/711281#M677658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in your load script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;P&gt;if(len(trim(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.800000190734863px;"&gt;yearmonthresolution&lt;/SPAN&gt;))=0, 'open', &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.800000190734863px;"&gt;yearmonthresolution&lt;/SPAN&gt;) as &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.800000190734863px;"&gt;yearmonthresolution,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.800000190734863px;"&gt;.....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;from&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ......;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2014 09:33:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/if-problem/m-p/711281#M677658</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-06-19T09:33:17Z</dc:date>
    </item>
    <item>
      <title>Re: if problem</title>
      <link>https://community.qlik.com/t5/QlikView/if-problem/m-p/711282#M677659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ti suggerisco di fare questa operazione nello script per garantire uniformità dei dati:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Quando carichi la tabella contenente il campo &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;yearmonthresolution&lt;/SPAN&gt; scrivi:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(IsNull(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;yearmonthresolution) or trim(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;yearmonthresolution&lt;/SPAN&gt;)='', 'Open', &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;yearmonthresolution&lt;/SPAN&gt;) as &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;yearmonthresolution&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;Resident ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Se il problema non si risolve, significa che fai una join o esiste un'associazione che genera tale situazione, nel caso cerchiamo di trovare un'altra soluzione.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fammi sapere&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2014 09:35:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/if-problem/m-p/711282#M677659</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2014-06-19T09:35:13Z</dc:date>
    </item>
    <item>
      <title>Re: if problem</title>
      <link>https://community.qlik.com/t5/QlikView/if-problem/m-p/711283#M677660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you try to load the below table before your table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Map_Nulls:&lt;/P&gt;&lt;P&gt;Mapping LOAD&lt;/P&gt;&lt;P&gt;NULL(),'open'&lt;/P&gt;&lt;P&gt;AutoGenerate 1;&lt;/P&gt;&lt;P&gt;MAP 'yearmonthresolution'&amp;nbsp; using Map_Nulls;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i hope it will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mukram.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2014 09:36:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/if-problem/m-p/711283#M677660</guid>
      <dc:creator>mdmukramali</dc:creator>
      <dc:date>2014-06-19T09:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: if problem</title>
      <link>https://community.qlik.com/t5/QlikView/if-problem/m-p/711284#M677661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gabriele,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess this is a straight table. Go to the 'Presentation' tab in the 'Chart Properties' menu and type 'Open' into the 'Null Symbol' check box. That's all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Burkhard&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2014 09:40:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/if-problem/m-p/711284#M677661</guid>
      <dc:creator>veidlburkhard</dc:creator>
      <dc:date>2014-06-19T09:40:17Z</dc:date>
    </item>
    <item>
      <title>Re: if problem</title>
      <link>https://community.qlik.com/t5/QlikView/if-problem/m-p/711285#M677662</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;You can replace null with zeros.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look at the attached application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2014 09:42:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/if-problem/m-p/711285#M677662</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-06-19T09:42:13Z</dc:date>
    </item>
  </channel>
</rss>

