<?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: Renaming Multiple Records by Single Name in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Renaming-Multiple-Records-by-Single-Name/m-p/702177#M1052742</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you know which value it will ALWAYS take.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just write in the load:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;YourValue AS ThatField&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;LOAD Company,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 200 as CoreProduct,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Sage Version],&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [# of Users]&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-------------------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Oct 2014 15:26:46 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-10-27T15:26:46Z</dc:date>
    <item>
      <title>Renaming Multiple Records by Single Name</title>
      <link>https://community.qlik.com/t5/QlikView/Renaming-Multiple-Records-by-Single-Name/m-p/702171#M1052736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have Product Records with different names that I want to rename the same thing. For example, "S200" ",S200" "200SQL" -- I want all to be named "200" -- is there some kind of 'contains' function in Qlik that allows you to rename records?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rename Record(Contains '200') as 200 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How is this done in Qlik?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 14:36:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Renaming-Multiple-Records-by-Single-Name/m-p/702171#M1052736</guid>
      <dc:creator />
      <dc:date>2014-10-27T14:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming Multiple Records by Single Name</title>
      <link>https://community.qlik.com/t5/QlikView/Renaming-Multiple-Records-by-Single-Name/m-p/702172#M1052737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if(wildmatch(fieldname),'*&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;200*&lt;/SPAN&gt;',200,fieldname) as new fieldname&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 14:39:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Renaming-Multiple-Records-by-Single-Name/m-p/702172#M1052737</guid>
      <dc:creator>SunilChauhan</dc:creator>
      <dc:date>2014-10-27T14:39:17Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming Multiple Records by Single Name</title>
      <link>https://community.qlik.com/t5/QlikView/Renaming-Multiple-Records-by-Single-Name/m-p/702173#M1052738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried this and the CoreProduct field was blank...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD Company, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(WildMatch(CoreProduct = '*200*',200), CoreProduct) as CoreProduct,&lt;/P&gt;&lt;P&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CoreProduct, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Sage Version], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [# of Users]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thoughts?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 15:09:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Renaming-Multiple-Records-by-Single-Name/m-p/702173#M1052738</guid>
      <dc:creator />
      <dc:date>2014-10-27T15:09:09Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming Multiple Records by Single Name</title>
      <link>https://community.qlik.com/t5/QlikView/Renaming-Multiple-Records-by-Single-Name/m-p/702174#M1052739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the syntax you have written it is wrong&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;if(WildMatch&lt;STRONG&gt;(CoreProduct,'*200*',200)&lt;/STRONG&gt;, CoreProduct) as CoreProduct,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Regards&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 15:13:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Renaming-Multiple-Records-by-Single-Name/m-p/702174#M1052739</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2014-10-27T15:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming Multiple Records by Single Name</title>
      <link>https://community.qlik.com/t5/QlikView/Renaming-Multiple-Records-by-Single-Name/m-p/702175#M1052740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, Max.&amp;nbsp; I tried that first.&amp;nbsp; It comes back with no errors, but there is no additional '200' record and all of the product names are the same.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 15:16:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Renaming-Multiple-Records-by-Single-Name/m-p/702175#M1052740</guid>
      <dc:creator />
      <dc:date>2014-10-27T15:16:28Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming Multiple Records by Single Name</title>
      <link>https://community.qlik.com/t5/QlikView/Renaming-Multiple-Records-by-Single-Name/m-p/702176#M1052741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry my bad&lt;/P&gt;&lt;P&gt;I had written wrong if&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;if(WildMatch&lt;/SPAN&gt;&lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(CoreProduct,'*200*'),200&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;,CoreProduct) as CoreProduct,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Regards&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 15:19:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Renaming-Multiple-Records-by-Single-Name/m-p/702176#M1052741</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2014-10-27T15:19:48Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming Multiple Records by Single Name</title>
      <link>https://community.qlik.com/t5/QlikView/Renaming-Multiple-Records-by-Single-Name/m-p/702177#M1052742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you know which value it will ALWAYS take.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just write in the load:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;YourValue AS ThatField&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;LOAD Company,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 200 as CoreProduct,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Sage Version],&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [# of Users]&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-------------------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 15:26:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Renaming-Multiple-Records-by-Single-Name/m-p/702177#M1052742</guid>
      <dc:creator />
      <dc:date>2014-10-27T15:26:46Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming Multiple Records by Single Name</title>
      <link>https://community.qlik.com/t5/QlikView/Renaming-Multiple-Records-by-Single-Name/m-p/702178#M1052743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks All.&amp;nbsp; Max -- your script worked -- thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;End game, however -- is to have 3 record names -- it seems that this version of wildmatch is only for one record name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now we can define that ,200 and 200 are named "200".&amp;nbsp; What if I want to say ,200 and 200 are "200"&amp;nbsp; AND ,500 and 500 are "500"&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 15:35:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Renaming-Multiple-Records-by-Single-Name/m-p/702178#M1052743</guid>
      <dc:creator />
      <dc:date>2014-10-27T15:35:22Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming Multiple Records by Single Name</title>
      <link>https://community.qlik.com/t5/QlikView/Renaming-Multiple-Records-by-Single-Name/m-p/702179#M1052744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then write nested if else&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try like&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;if(WildMatch&lt;/SPAN&gt;&lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(CoreProduct,'*200*'),200&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;,if(Wildmatch(CoreProduct,'*500*'),500,CoreProduct)) as CoreProduct,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Regards&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 15:38:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Renaming-Multiple-Records-by-Single-Name/m-p/702179#M1052744</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2014-10-27T15:38:40Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming Multiple Records by Single Name</title>
      <link>https://community.qlik.com/t5/QlikView/Renaming-Multiple-Records-by-Single-Name/m-p/702180#M1052745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Close thread if you get correct answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 15:43:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Renaming-Multiple-Records-by-Single-Name/m-p/702180#M1052745</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2014-10-27T15:43:02Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming Multiple Records by Single Name</title>
      <link>https://community.qlik.com/t5/QlikView/Renaming-Multiple-Records-by-Single-Name/m-p/702181#M1052746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perfect.&amp;nbsp; You the man, Max.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 15:44:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Renaming-Multiple-Records-by-Single-Name/m-p/702181#M1052746</guid>
      <dc:creator />
      <dc:date>2014-10-27T15:44:29Z</dc:date>
    </item>
  </channel>
</rss>

