<?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: Genrice Name Required in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Genrice-Name-Required/m-p/1372576#M419283</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;You can use a wildmatch function in the script . Below example is the qlikview load:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Load *&lt;/P&gt;&lt;P&gt;from Salesforce_Data_global.qvd(qvd) WHERE WildMatch(&lt;STRONG style="color: #3d3d3d; font-size: 13.3333px; font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;Field ,'Amazon*'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will work as a 'Start with'&amp;nbsp; function in Salesforce i.e If the word starts with Amazon, it will pull the entire names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the detailed explanation:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.qlik.com/en-US/qlikview/12.1/Subsystems/Client/Content/Scripting/ConditionalFunctions/wildmatch.htm" title="http://help.qlik.com/en-US/qlikview/12.1/Subsystems/Client/Content/Scripting/ConditionalFunctions/wildmatch.htm"&gt;wildmatch ‒ QlikView&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Jun 2017 15:26:15 GMT</pubDate>
    <dc:creator>bobbyn4u</dc:creator>
    <dc:date>2017-06-28T15:26:15Z</dc:date>
    <item>
      <title>Genrice Name Required</title>
      <link>https://community.qlik.com/t5/QlikView/Genrice-Name-Required/m-p/1372574#M419281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I Have a column which hold different name like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example 1:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1]Mark and Might&lt;/P&gt;&lt;P&gt;2]Mark &amp;amp; MIght &lt;/P&gt;&lt;P&gt;3]mark and might&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Output : &lt;STRONG style="font-size: 13.3333px;"&gt;Mark and Might&lt;/STRONG&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example 2:&lt;/P&gt;&lt;P&gt;1]amazon.in&lt;/P&gt;&lt;P&gt;2]amazon.us&lt;/P&gt;&lt;P&gt;3]amazon.uk&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Output :&lt;STRONG style="font-size: 13.3333px;"&gt;Amazon &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want output as&lt;SPAN style="font-size: 13.3333px;"&gt; above mentioned &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like wise i have different fields with different name&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jun 2017 14:52:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Genrice-Name-Required/m-p/1372574#M419281</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-28T14:52:31Z</dc:date>
    </item>
    <item>
      <title>Re: Genrice Name Required</title>
      <link>https://community.qlik.com/t5/QlikView/Genrice-Name-Required/m-p/1372575#M419282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;you have to do something like this in the script&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(WildMatch(Field ,'Mark*'),'Mark and Might',&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;If(WildMatch(Field ,'Amazon*'),'Amazon'&lt;/SPAN&gt;),Field) as NewField&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jun 2017 15:04:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Genrice-Name-Required/m-p/1372575#M419282</guid>
      <dc:creator>aarkay29</dc:creator>
      <dc:date>2017-06-28T15:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: Genrice Name Required</title>
      <link>https://community.qlik.com/t5/QlikView/Genrice-Name-Required/m-p/1372576#M419283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;You can use a wildmatch function in the script . Below example is the qlikview load:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Load *&lt;/P&gt;&lt;P&gt;from Salesforce_Data_global.qvd(qvd) WHERE WildMatch(&lt;STRONG style="color: #3d3d3d; font-size: 13.3333px; font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;Field ,'Amazon*'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will work as a 'Start with'&amp;nbsp; function in Salesforce i.e If the word starts with Amazon, it will pull the entire names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the detailed explanation:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.qlik.com/en-US/qlikview/12.1/Subsystems/Client/Content/Scripting/ConditionalFunctions/wildmatch.htm" title="http://help.qlik.com/en-US/qlikview/12.1/Subsystems/Client/Content/Scripting/ConditionalFunctions/wildmatch.htm"&gt;wildmatch ‒ QlikView&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jun 2017 15:26:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Genrice-Name-Required/m-p/1372576#M419283</guid>
      <dc:creator>bobbyn4u</dc:creator>
      <dc:date>2017-06-28T15:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: Genrice Name Required</title>
      <link>https://community.qlik.com/t5/QlikView/Genrice-Name-Required/m-p/1372577#M419284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think we can handle the same Using Appplymap ,by putting repeated name in Excel and plotting final name.&lt;/P&gt;&lt;P&gt;Is there any procedure to handle at the script level,because i Have many data discrepancy in the above way !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone tell me the steps to handle in the script &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jun 2017 15:33:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Genrice-Name-Required/m-p/1372577#M419284</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-28T15:33:41Z</dc:date>
    </item>
    <item>
      <title>Re: Genrice Name Required</title>
      <link>https://community.qlik.com/t5/QlikView/Genrice-Name-Required/m-p/1372578#M419285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The only thing that i can think of is &lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;You have to manipulate based on the scenarios.&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;For the given scenarios would be &lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;something like&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Load&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(WildMatch(&lt;SPAN style="font-size: 13.3333px;"&gt;Field&lt;/SPAN&gt;,'*.*'),subfield(&lt;SPAN style="font-size: 13.3333px;"&gt;Field&lt;/SPAN&gt;,'.',1),&lt;SPAN style="font-size: 13.3333px;"&gt;Field&lt;/SPAN&gt;) as &lt;SPAN style="font-size: 13.3333px;"&gt;Field&lt;/SPAN&gt;;&amp;nbsp;&amp;nbsp; // For 2nd scenario&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;STRONG&gt;Load &lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;STRONG&gt;Upper(Replace(Field,'&amp;amp;','and') as Field&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // For 1st scenario&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;From table;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jun 2017 15:58:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Genrice-Name-Required/m-p/1372578#M419285</guid>
      <dc:creator>aarkay29</dc:creator>
      <dc:date>2017-06-28T15:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: Genrice Name Required</title>
      <link>https://community.qlik.com/t5/QlikView/Genrice-Name-Required/m-p/1372579#M419286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;LOAD *,&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(wildmatch(lower(Field),'mark*might','Mark and Might',&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(wildmatch(lower(Field),'*amazone*','Amazon',Field)) as NewFeld&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;FROM table&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jun 2017 17:18:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Genrice-Name-Required/m-p/1372579#M419286</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2017-06-28T17:18:40Z</dc:date>
    </item>
  </channel>
</rss>

