<?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: flag identifiers in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/flag-identifiers/m-p/1260550#M397663</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it will check fr null values,&lt;/P&gt;&lt;P&gt;but how it will polulate 0 in thse null values&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Mar 2017 15:05:54 GMT</pubDate>
    <dc:creator />
    <dc:date>2017-03-22T15:05:54Z</dc:date>
    <item>
      <title>flag identifiers</title>
      <link>https://community.qlik.com/t5/QlikView/flag-identifiers/m-p/1260545#M397658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a requirement like :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;suppose one field as x&amp;nbsp; f&lt;SPAN style="color: #000000; direction: ltr; font-size: 10pt; -ms-word-wrap: break-word; font-family: 'Segoe UI';"&gt;or yes nd no it shud polulate 1 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; direction: ltr; font-size: 10pt; -ms-word-wrap: break-word; font-family: 'Segoe UI';"&gt;and for null values it should polulate as 0&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Mar 2017 14:26:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/flag-identifiers/m-p/1260545#M397658</guid>
      <dc:creator />
      <dc:date>2017-03-22T14:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: flag identifiers</title>
      <link>https://community.qlik.com/t5/QlikView/flag-identifiers/m-p/1260546#M397659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(Len(Trim(x)) = 0, 0, 1) as Flag&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Mar 2017 14:28:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/flag-identifiers/m-p/1260546#M397659</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-03-22T14:28:35Z</dc:date>
    </item>
    <item>
      <title>Re: flag identifiers</title>
      <link>https://community.qlik.com/t5/QlikView/flag-identifiers/m-p/1260547#M397660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;so in the above how it will polulate 0 for null(-) values&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Mar 2017 14:31:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/flag-identifiers/m-p/1260547#M397660</guid>
      <dc:creator />
      <dc:date>2017-03-22T14:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: flag identifiers</title>
      <link>https://community.qlik.com/t5/QlikView/flag-identifiers/m-p/1260548#M397661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;so currently i have written as&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Segoe UI'; font-size: 10pt; direction: ltr; -ms-word-wrap: break-word;"&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;(x&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-size: 10pt;"&gt;''&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-size: 10pt;"&gt;'0'&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-size: 10pt;"&gt;'1'&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;) &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Mar 2017 14:39:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/flag-identifiers/m-p/1260548#M397661</guid>
      <dc:creator />
      <dc:date>2017-03-22T14:39:47Z</dc:date>
    </item>
    <item>
      <title>Re: flag identifiers</title>
      <link>https://community.qlik.com/t5/QlikView/flag-identifiers/m-p/1260549#M397662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Len(Trim()) will check for the Nulls&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Mar 2017 14:41:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/flag-identifiers/m-p/1260549#M397662</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-03-22T14:41:27Z</dc:date>
    </item>
    <item>
      <title>Re: flag identifiers</title>
      <link>https://community.qlik.com/t5/QlikView/flag-identifiers/m-p/1260550#M397663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it will check fr null values,&lt;/P&gt;&lt;P&gt;but how it will polulate 0 in thse null values&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Mar 2017 15:05:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/flag-identifiers/m-p/1260550#M397663</guid>
      <dc:creator />
      <dc:date>2017-03-22T15:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: flag identifiers</title>
      <link>https://community.qlik.com/t5/QlikView/flag-identifiers/m-p/1260551#M397664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If Len(Trim(x)) is 0 (meaning if it is null), then show 0, otherwise show 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the issue you are running into?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Mar 2017 15:08:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/flag-identifiers/m-p/1260551#M397664</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-03-22T15:08:21Z</dc:date>
    </item>
    <item>
      <title>Re: flag identifiers</title>
      <link>https://community.qlik.com/t5/QlikView/flag-identifiers/m-p/1260552#M397665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this doesnt work,can u plz suggest something else.&lt;/P&gt;&lt;P&gt;actually in a qvd ,i have written match(fieldname,'y','n')&lt;/P&gt;&lt;P&gt;and in a qvw written as :&lt;/P&gt;&lt;P&gt;if(fieldname='','0','1')&lt;/P&gt;&lt;P&gt;so my requirement is where there is null values it shud polulate 0&lt;/P&gt;&lt;P&gt;and for yes/no it shud polulate as 1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2017 08:54:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/flag-identifiers/m-p/1260552#M397665</guid>
      <dc:creator />
      <dc:date>2017-03-23T08:54:10Z</dc:date>
    </item>
    <item>
      <title>Re: flag identifiers</title>
      <link>https://community.qlik.com/t5/QlikView/flag-identifiers/m-p/1260553#M397666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would you be able to share a sample where it isn't working? Cause I don't see a reason why it won't work....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2017 08:56:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/flag-identifiers/m-p/1260553#M397666</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-03-23T08:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: flag identifiers</title>
      <link>https://community.qlik.com/t5/QlikView/flag-identifiers/m-p/1260554#M397667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not giving any output&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2017 09:04:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/flag-identifiers/m-p/1260554#M397667</guid>
      <dc:creator />
      <dc:date>2017-03-23T09:04:51Z</dc:date>
    </item>
    <item>
      <title>Re: flag identifiers</title>
      <link>https://community.qlik.com/t5/QlikView/flag-identifiers/m-p/1260555#M397668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great.... I am sure someone else might be able to help..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the best&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2017 09:06:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/flag-identifiers/m-p/1260555#M397668</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-03-23T09:06:42Z</dc:date>
    </item>
    <item>
      <title>Re: flag identifiers</title>
      <link>https://community.qlik.com/t5/QlikView/flag-identifiers/m-p/1260556#M397669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Keep the qvd with the same logic you mentioned...match(fieldname,'y','n')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When loading the qvd into your qvw sunny is correct that this should work&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(Len(Trim(Fieldname)) = 0, 0, 1) as Flag&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2017 09:36:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/flag-identifiers/m-p/1260556#M397669</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-23T09:36:42Z</dc:date>
    </item>
  </channel>
</rss>

