<?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: SubStringCount with OR during load ? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/SOLVED-SubStringCount-with-OR-during-load/m-p/1550043#M39637</link>
    <description>&lt;P&gt;Substringcount is case sensitive. Are you sure the records that are missing do have the complete lowercase 'community' value in the field Name?&lt;/P&gt;</description>
    <pubDate>Wed, 27 Feb 2019 18:22:43 GMT</pubDate>
    <dc:creator>Gysbert_Wassenaar</dc:creator>
    <dc:date>2019-02-27T18:22:43Z</dc:date>
    <item>
      <title>[SOLVED]: SubStringCount with OR during load ?</title>
      <link>https://community.qlik.com/t5/App-Development/SOLVED-SubStringCount-with-OR-during-load/m-p/1550034#M39634</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Solution&lt;/STRONG&gt;: SubStringCount is case-sensitive.&lt;/P&gt;&lt;P&gt;I am trying to create an extra column in load. The value should be "Yes" if one of the existing columns contains one of two substrings.&lt;/P&gt;&lt;PRE&gt;LOAD
&amp;nbsp; &amp;nbsp; Name,
&amp;nbsp; &amp;nbsp; "Type",
&amp;nbsp; &amp;nbsp; "Year",
&amp;nbsp; &amp;nbsp; Hits,
&amp;nbsp; &amp;nbsp; if((SubStringCount([Name],'community')&amp;gt;0 OR SubStringCount([Name],'operative')&amp;gt;0),'Yes','No') AS [CC],
&amp;nbsp; &amp;nbsp; Latlong
FROM [lib://AttachedFiles/MyFile.csv]&lt;/PRE&gt;&lt;UL&gt;&lt;LI&gt;New column gets added. ✔&lt;/LI&gt;&lt;LI&gt;Rows where column Name contains "operative" have value "Yes" in the new column. ✔&lt;/LI&gt;&lt;LI&gt;Rows where column Name contains "community" have value "No" in the new column. ✖&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;How do I modify my on-the-fly column creation expression in order to get it right?&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 06:28:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/SOLVED-SubStringCount-with-OR-during-load/m-p/1550034#M39634</guid>
      <dc:creator>RomanVanK</dc:creator>
      <dc:date>2024-11-16T06:28:09Z</dc:date>
    </item>
    <item>
      <title>Re: SubStringCount with OR during load ?</title>
      <link>https://community.qlik.com/t5/App-Development/SOLVED-SubStringCount-with-OR-during-load/m-p/1550043#M39637</link>
      <description>&lt;P&gt;Substringcount is case sensitive. Are you sure the records that are missing do have the complete lowercase 'community' value in the field Name?&lt;/P&gt;</description>
      <pubDate>Wed, 27 Feb 2019 18:22:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/SOLVED-SubStringCount-with-OR-during-load/m-p/1550043#M39637</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2019-02-27T18:22:43Z</dc:date>
    </item>
    <item>
      <title>Re: SubStringCount with OR during load ?</title>
      <link>https://community.qlik.com/t5/App-Development/SOLVED-SubStringCount-with-OR-during-load/m-p/1550047#M39638</link>
      <description>&lt;P&gt;I have just spotted the case disagreement, fixed it, and came here to share my discovery. Thank you for beating me to it.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Feb 2019 18:27:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/SOLVED-SubStringCount-with-OR-during-load/m-p/1550047#M39638</guid>
      <dc:creator>RomanVanK</dc:creator>
      <dc:date>2019-02-27T18:27:41Z</dc:date>
    </item>
    <item>
      <title>Re: SubStringCount with OR during load ?</title>
      <link>https://community.qlik.com/t5/App-Development/SOLVED-SubStringCount-with-OR-during-load/m-p/1550181#M39646</link>
      <description>&lt;P&gt;Here are some case insensitive ways to write the same logic.&lt;/P&gt;&lt;P&gt;if( WIldMatch([Name],'*community*', '*operative*'),'Yes','No') AS [CC]&lt;/P&gt;&lt;P&gt;if( [Name] like *community*' or [Name] like '*operative*', 'Yes', 'No') AS [CC]&lt;/P&gt;&lt;P&gt;-Rob&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Feb 2019 03:33:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/SOLVED-SubStringCount-with-OR-during-load/m-p/1550181#M39646</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2019-02-28T03:33:17Z</dc:date>
    </item>
    <item>
      <title>Re: SubStringCount with OR during load ?</title>
      <link>https://community.qlik.com/t5/App-Development/SOLVED-SubStringCount-with-OR-during-load/m-p/1550668#M39690</link>
      <description>Thank you for the education, Rob.&lt;BR /&gt;&lt;BR /&gt;Speaking of WildMatch(), I was looking for a list of Qlik functions with an easy search (like api.jquery.com), but all I could find was a function directory, where one is expected to be pre-armed with the name or the purpose of a function in order to find it. It will take me some time to learn the vocabulary.</description>
      <pubDate>Thu, 28 Feb 2019 17:26:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/SOLVED-SubStringCount-with-OR-during-load/m-p/1550668#M39690</guid>
      <dc:creator>RomanVanK</dc:creator>
      <dc:date>2019-02-28T17:26:49Z</dc:date>
    </item>
    <item>
      <title>Re: SubStringCount with OR during load ?</title>
      <link>https://community.qlik.com/t5/App-Development/SOLVED-SubStringCount-with-OR-during-load/m-p/1550770#M39700</link>
      <description>&lt;P&gt;I agree that the on-line help layout sometimes just doesn't do the trick.&amp;nbsp; I find the PDF versions much easier to browse and search.&amp;nbsp; You can download PDFs from the "Guides" section found at the bottom of the help navigation menu for each product.&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2019-02-28_13-05-32.png" style="width: 660px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/7024iDEFFEB19C9843724/image-size/large?v=v2&amp;amp;px=999" role="button" title="2019-02-28_13-05-32.png" alt="2019-02-28_13-05-32.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Feb 2019 21:07:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/SOLVED-SubStringCount-with-OR-during-load/m-p/1550770#M39700</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2019-02-28T21:07:26Z</dc:date>
    </item>
  </channel>
</rss>

