<?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: Null values with Substring(concat statement in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Null-values-with-Substring-concat-statement/m-p/3650#M539</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Sunny&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That was going to be my next question, this works for me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Helen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Jan 2018 13:33:40 GMT</pubDate>
    <dc:creator>helen_pip</dc:creator>
    <dc:date>2018-01-19T13:33:40Z</dc:date>
    <item>
      <title>Null values with Substring(concat statement</title>
      <link>https://community.qlik.com/t5/QlikView/Null-values-with-Substring-concat-statement/m-p/3646#M535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Qlikview User&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have attached a copy of a QVW which illistrates my issue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the text object I have written an expression which should show 0 when Month Yr is not selected from list box.&amp;nbsp; However I expected the expression to be 0 when I take off all my selections from the list box&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could someone kindly take a look and let me know where I may have gone wrong with the expression as I would like the expression to show 0 when nothing in the list box is selected&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Helen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2018 12:58:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-values-with-Substring-concat-statement/m-p/3646#M535</guid>
      <dc:creator>helen_pip</dc:creator>
      <dc:date>2018-01-19T12:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: Null values with Substring(concat statement</title>
      <link>https://community.qlik.com/t5/QlikView/Null-values-with-Substring-concat-statement/m-p/3647#M536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perhaps this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=If(GetFieldSelections(_dates_RTT)='Month Yr',SubStringCount(Concat(If(IsNull(_dates_RTT), '1', _dates_RTT),&amp;nbsp; '|'), 'Month Yr'),'0')&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2018 13:04:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-values-with-Substring-concat-statement/m-p/3647#M536</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2018-01-19T13:04:45Z</dc:date>
    </item>
    <item>
      <title>Re: Null values with Substring(concat statement</title>
      <link>https://community.qlik.com/t5/QlikView/Null-values-with-Substring-concat-statement/m-p/3648#M537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brilliant&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you, this works a treat!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Helen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2018 13:08:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-values-with-Substring-concat-statement/m-p/3648#M537</guid>
      <dc:creator>helen_pip</dc:creator>
      <dc:date>2018-01-19T13:08:26Z</dc:date>
    </item>
    <item>
      <title>Re: Null values with Substring(concat statement</title>
      <link>https://community.qlik.com/t5/QlikView/Null-values-with-Substring-concat-statement/m-p/3649#M538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=If(GetSelectedCount(_dates_RTT) &amp;gt; 0, SubStringCount(Concat(If(IsNull(_dates_RTT), '1', _dates_RTT),&amp;nbsp; '|'), 'Month Yr'),'0')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to see 1 if two selections are made and one of them is Month Yr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/190670_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2018 13:08:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-values-with-Substring-concat-statement/m-p/3649#M538</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-01-19T13:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: Null values with Substring(concat statement</title>
      <link>https://community.qlik.com/t5/QlikView/Null-values-with-Substring-concat-statement/m-p/3650#M539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Sunny&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That was going to be my next question, this works for me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Helen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2018 13:33:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-values-with-Substring-concat-statement/m-p/3650#M539</guid>
      <dc:creator>helen_pip</dc:creator>
      <dc:date>2018-01-19T13:33:40Z</dc:date>
    </item>
    <item>
      <title>Re: Null values with Substring(concat statement</title>
      <link>https://community.qlik.com/t5/QlikView/Null-values-with-Substring-concat-statement/m-p/3651#M540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glad it helped &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2018 13:38:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Null-values-with-Substring-concat-statement/m-p/3651#M540</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-01-19T13:38:02Z</dc:date>
    </item>
  </channel>
</rss>

