<?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: Changing names in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Changing-names/m-p/2164209#M1225192</link>
    <description>&lt;P&gt;Thank you for your response in here . The challenge that I'm faced with is that I'm not able to utilize the load functionality as we are deploying the Qlikview dashboard in a different application. Therefore restricted with only expressions.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Apologize for not being clear on this however if you may have a solution in order to perform this with an expression, feel free to share this with me.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've tried the following without succes:&lt;/P&gt;
&lt;P&gt;=IF(&lt;BR /&gt;Upper(Company_Name) = '&lt;SPAN&gt;abc b.v.&lt;/SPAN&gt;', '&lt;SPAN&gt;abc bv&lt;/SPAN&gt;', &lt;BR /&gt;Upper(Company_Name) = '&lt;SPAN&gt;def gmbh&lt;/SPAN&gt;', '&lt;SPAN&gt;def GMBH&lt;/SPAN&gt;',&lt;BR /&gt;Upper(Company_Name) = '&lt;SPAN&gt;ghi bvba&lt;/SPAN&gt;', '&lt;SPAN&gt;ghi b.v.b.a&lt;/SPAN&gt;',&lt;BR /&gt;Company_Name))&lt;/P&gt;
&lt;P&gt;Unfortunately when this is performed for 1 line, it is functioning however for 2 or more lines, I'm getting an error message.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Again, thank you for your response in here.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Marc&lt;/P&gt;</description>
    <pubDate>Tue, 23 Jan 2024 08:11:25 GMT</pubDate>
    <dc:creator>marcvw</dc:creator>
    <dc:date>2024-01-23T08:11:25Z</dc:date>
    <item>
      <title>Changing names</title>
      <link>https://community.qlik.com/t5/QlikView/Changing-names/m-p/2163735#M1225188</link>
      <description>&lt;P&gt;Good Day All,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another day, another challenge, I have a column that contains the names of differrent organizations. I woul like to make changes to these names via an expression in Qlikview. Are there any ways in order to do so?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See below example.&amp;nbsp;&lt;/P&gt;
&lt;TABLE width="199"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="20"&gt;ID&lt;/TD&gt;
&lt;TD width="93"&gt;Current name&lt;/TD&gt;
&lt;TD width="86"&gt;Future name&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;1&lt;/TD&gt;
&lt;TD&gt;abc b.v.&lt;/TD&gt;
&lt;TD&gt;abc bv&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;2&lt;/TD&gt;
&lt;TD&gt;def gmbh&lt;/TD&gt;
&lt;TD&gt;def GMBH&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;3&lt;/TD&gt;
&lt;TD&gt;ghi bvba&lt;/TD&gt;
&lt;TD&gt;ghi b.v.b.a&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Appreciate your support in here.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jan 2024 13:29:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Changing-names/m-p/2163735#M1225188</guid>
      <dc:creator>marcvw</dc:creator>
      <dc:date>2024-01-22T13:29:24Z</dc:date>
    </item>
    <item>
      <title>Re: Changing names</title>
      <link>https://community.qlik.com/t5/QlikView/Changing-names/m-p/2163991#M1225189</link>
      <description>&lt;P&gt;seems&amp;nbsp; your requirement is not static like for each record you have to write different condition like below&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;LOAD *,Pick(Match(id,1,2,3),Replace(name,'.',''),SubField(name,' ',1)&amp;amp;' '&amp;amp;Upper(SubField(name,' ',2)),SubField(name,' ',1)&amp;amp;' '&amp;amp;SubField(name,' ',2)) as Nname;&lt;BR /&gt;LOAD * Inline [&lt;BR /&gt;id,name&lt;BR /&gt;1,abc b.v.&lt;BR /&gt;2,def gmbh&lt;BR /&gt;3,ghi bvba&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;];&lt;/P&gt;
&lt;P&gt;may be confirm your requirement again.....&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jan 2024 16:49:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Changing-names/m-p/2163991#M1225189</guid>
      <dc:creator>anat</dc:creator>
      <dc:date>2024-01-22T16:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: Changing names</title>
      <link>https://community.qlik.com/t5/QlikView/Changing-names/m-p/2164003#M1225190</link>
      <description>&lt;P&gt;This is an ideal use for a Mapping Table and Map Using or ApplyMap.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/sense/November2023/Subsystems/Hub/Content/Sense_Hub/Scripting/ScriptPrefixes/Mapping.htm" target="_blank"&gt;https://help.qlik.com/en-US/sense/November2023/Subsystems/Hub/Content/Sense_Hub/Scripting/ScriptPrefixes/Mapping.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;NameMap:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Mapping Load * Inline [&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;From, To&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;abc b.v.,&amp;nbsp;abc bv &lt;BR /&gt;def gmbh,&amp;nbsp;def GMBH &lt;BR /&gt;ghi bvba,&amp;nbsp;ghi b.v.b.a&lt;BR /&gt;&lt;/SPAN&gt;];&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Map CustomerName Using NameMap;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Customers:&amp;nbsp;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;LOAD CustomerName, ...&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;The mapping table needs only to include names that will change. Names not in the table will remain unchanged.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-Rob&lt;BR /&gt;&lt;A href="http://www.easyqlik.com" target="_blank"&gt;http://www.easyqlik.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://masterssummit.com" target="_blank"&gt;http://masterssummit.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://qlikviewcookbook.com" target="_blank"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jan 2024 17:22:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Changing-names/m-p/2164003#M1225190</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2024-01-22T17:22:55Z</dc:date>
    </item>
    <item>
      <title>Re: Changing names</title>
      <link>https://community.qlik.com/t5/QlikView/Changing-names/m-p/2164208#M1225191</link>
      <description>&lt;P&gt;Thank you for your response in here Rob. The challenge that I'm faced with is that I'm not able to utilize the load functionality as we are deploying the Qlikview dashboard in a different application. Therefore restricted with only expressions.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Apologize for not being clear on this however if you may have a solution in order to perform this with an expression, feel free to share this with me.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've tried the following without succes:&lt;/P&gt;
&lt;P&gt;=IF(&lt;BR /&gt;Upper(Company_Name) = '&lt;SPAN&gt;abc b.v.&lt;/SPAN&gt;', '&lt;SPAN&gt;abc bv&lt;/SPAN&gt;', &lt;BR /&gt;Upper(Company_Name) = '&lt;SPAN&gt;def gmbh&lt;/SPAN&gt;', '&lt;SPAN&gt;def GMBH&lt;/SPAN&gt;',&lt;BR /&gt;Upper(Company_Name) = '&lt;SPAN&gt;ghi bvba&lt;/SPAN&gt;', '&lt;SPAN&gt;ghi b.v.b.a&lt;/SPAN&gt;',&lt;BR /&gt;Company_Name))&lt;/P&gt;
&lt;P&gt;Unfortunately when this is performed for 1 line, it is functioning however for 2 or more lines, I'm getting an error message.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Again, thank you for your response in here.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Marc&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2024 08:10:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Changing-names/m-p/2164208#M1225191</guid>
      <dc:creator>marcvw</dc:creator>
      <dc:date>2024-01-23T08:10:33Z</dc:date>
    </item>
    <item>
      <title>Re: Changing names</title>
      <link>https://community.qlik.com/t5/QlikView/Changing-names/m-p/2164209#M1225192</link>
      <description>&lt;P&gt;Thank you for your response in here . The challenge that I'm faced with is that I'm not able to utilize the load functionality as we are deploying the Qlikview dashboard in a different application. Therefore restricted with only expressions.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Apologize for not being clear on this however if you may have a solution in order to perform this with an expression, feel free to share this with me.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've tried the following without succes:&lt;/P&gt;
&lt;P&gt;=IF(&lt;BR /&gt;Upper(Company_Name) = '&lt;SPAN&gt;abc b.v.&lt;/SPAN&gt;', '&lt;SPAN&gt;abc bv&lt;/SPAN&gt;', &lt;BR /&gt;Upper(Company_Name) = '&lt;SPAN&gt;def gmbh&lt;/SPAN&gt;', '&lt;SPAN&gt;def GMBH&lt;/SPAN&gt;',&lt;BR /&gt;Upper(Company_Name) = '&lt;SPAN&gt;ghi bvba&lt;/SPAN&gt;', '&lt;SPAN&gt;ghi b.v.b.a&lt;/SPAN&gt;',&lt;BR /&gt;Company_Name))&lt;/P&gt;
&lt;P&gt;Unfortunately when this is performed for 1 line, it is functioning however for 2 or more lines, I'm getting an error message.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Again, thank you for your response in here.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Marc&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2024 08:11:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Changing-names/m-p/2164209#M1225192</guid>
      <dc:creator>marcvw</dc:creator>
      <dc:date>2024-01-23T08:11:25Z</dc:date>
    </item>
    <item>
      <title>Re: Changing names</title>
      <link>https://community.qlik.com/t5/QlikView/Changing-names/m-p/2164225#M1225193</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Pick(Match(Company_Name,'abc b.v.','def gmbh','ghi bvba'),'abc bv','def GMBH','ghi b.v.b.a') as Nname&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2024 08:30:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Changing-names/m-p/2164225#M1225193</guid>
      <dc:creator>anat</dc:creator>
      <dc:date>2024-01-23T08:30:53Z</dc:date>
    </item>
    <item>
      <title>Re: Changing names</title>
      <link>https://community.qlik.com/t5/QlikView/Changing-names/m-p/2164237#M1225194</link>
      <description>&lt;P&gt;Thanks again and I'm sure this expression functions however in the environment we are working we are not able to create a new column. We can only work with expressions and create expressions however not new dimensions. Again apologize this was not clear. Hope that there are other solutions you might be aware of and are willing to share.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2024 08:56:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Changing-names/m-p/2164237#M1225194</guid>
      <dc:creator>marcvw</dc:creator>
      <dc:date>2024-01-23T08:56:21Z</dc:date>
    </item>
    <item>
      <title>Re: Changing names</title>
      <link>https://community.qlik.com/t5/QlikView/Changing-names/m-p/2164528#M1225197</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/47358"&gt;@anat&lt;/a&gt;&amp;nbsp;suggestion of Pick(Match()) is good, just don't use the "as Nname" if you are using it in a chart.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to use the If() form, read up in the help on the if() syntax. You will need an If() function for each condition.&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense/November2023/Subsystems/Hub/Content/Sense_Hub/Scripting/ConditionalFunctions/if.htm" target="_blank"&gt;https://help.qlik.com/en-US/sense/November2023/Subsystems/Hub/Content/Sense_Hub/Scripting/ConditionalFunctions/if.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;=IF(&lt;/SPAN&gt;&lt;SPAN&gt;Lower(Company_Name) = '&lt;/SPAN&gt;&lt;SPAN&gt;abc b.v.&lt;/SPAN&gt;&lt;SPAN&gt;', '&lt;/SPAN&gt;&lt;SPAN&gt;abc bv&lt;/SPAN&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;,if(Lower(Company_Name) = '&lt;/SPAN&gt;&lt;SPAN&gt;def gmbh&lt;/SPAN&gt;&lt;SPAN&gt;', '&lt;/SPAN&gt;&lt;SPAN&gt;def GMBH&lt;/SPAN&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;,if(Lower(Company_Name) = '&lt;/SPAN&gt;&lt;SPAN&gt;ghi bvba&lt;/SPAN&gt;&lt;SPAN&gt;', '&lt;/SPAN&gt;&lt;SPAN&gt;ghi b.v.b.a&lt;/SPAN&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;,Company_Name)))&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;-Rob&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2024 16:28:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Changing-names/m-p/2164528#M1225197</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2024-01-23T16:28:33Z</dc:date>
    </item>
  </channel>
</rss>

