<?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 Adjusting Captions prior to Apply Map in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Adjusting-Captions-prior-to-Apply-Map/m-p/782894#M1047978</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Guys - I have the below, which works fine to apply most of the correct product names.&amp;nbsp; I want to be able to adjust a few of the Capt_US before the map is applied.&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CustomCaptions1:&lt;/P&gt;&lt;P&gt;Mapping LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Capt_Code" as OppoProductMap, "Capt_US" as Product&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL&amp;nbsp; SELECT...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; if(Oppo_Product&amp;gt;0,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ApplyMap('CustomCaptions1',Oppo_Product,)) as Product,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried putting:&amp;nbsp; if(WildMatch(Capt_US,'*Sage 100*'),'Sage 100') as Product; in the script but that removes all other product captions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any thoughts?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Nov 2014 16:02:14 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-11-06T16:02:14Z</dc:date>
    <item>
      <title>Adjusting Captions prior to Apply Map</title>
      <link>https://community.qlik.com/t5/QlikView/Adjusting-Captions-prior-to-Apply-Map/m-p/782894#M1047978</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Guys - I have the below, which works fine to apply most of the correct product names.&amp;nbsp; I want to be able to adjust a few of the Capt_US before the map is applied.&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CustomCaptions1:&lt;/P&gt;&lt;P&gt;Mapping LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Capt_Code" as OppoProductMap, "Capt_US" as Product&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL&amp;nbsp; SELECT...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; if(Oppo_Product&amp;gt;0,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ApplyMap('CustomCaptions1',Oppo_Product,)) as Product,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried putting:&amp;nbsp; if(WildMatch(Capt_US,'*Sage 100*'),'Sage 100') as Product; in the script but that removes all other product captions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any thoughts?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2014 16:02:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Adjusting-Captions-prior-to-Apply-Map/m-p/782894#M1047978</guid>
      <dc:creator />
      <dc:date>2014-11-06T16:02:14Z</dc:date>
    </item>
    <item>
      <title>Re: Adjusting Captions prior to Apply Map</title>
      <link>https://community.qlik.com/t5/QlikView/Adjusting-Captions-prior-to-Apply-Map/m-p/782895#M1047979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are missing the "Else" in the if().&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; font-size: 12.7272720336914px;"&gt;if(WildMatch(Capt_US,'*Sage 100*'),'Sage 100',&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.7272720336914px;"&gt;ApplyMap('CustomCaptions1',Oppo_Product,)&lt;/SPAN&gt;) as Product&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.7272720336914px;"&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; font-size: 12.7272720336914px;"&gt;It may be easier to adjust your mapping table to map that value directly.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.7272720336914px;"&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; font-size: 12.7272720336914px;"&gt;-Rob&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2014 16:07:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Adjusting-Captions-prior-to-Apply-Map/m-p/782895#M1047979</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2014-11-06T16:07:32Z</dc:date>
    </item>
    <item>
      <title>Re: Adjusting Captions prior to Apply Map</title>
      <link>https://community.qlik.com/t5/QlikView/Adjusting-Captions-prior-to-Apply-Map/m-p/782896#M1047980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Rob!&amp;nbsp; I did forget the else Capt_US at the end there.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changing the mapping table would be much easier, but I the company won't give me access to change tables in CRM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2014 16:16:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Adjusting-Captions-prior-to-Apply-Map/m-p/782896#M1047980</guid>
      <dc:creator />
      <dc:date>2014-11-06T16:16:10Z</dc:date>
    </item>
    <item>
      <title>Re: Adjusting Captions prior to Apply Map</title>
      <link>https://community.qlik.com/t5/QlikView/Adjusting-Captions-prior-to-Apply-Map/m-p/782897#M1047981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You don't need to change the CRM source table. You can make the adjustment when you create the mapping table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;CustomCaptions1:&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Mapping LOAD&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; 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; "Capt_Code" as OppoProductMap,&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.7272720336914px;"&gt;if(WildMatch(Capt_US,'*Sage 100*'),'Sage 100',&lt;/SPAN&gt; "Capt_US") as Product&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL&amp;nbsp; SELECT...&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2014 17:03:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Adjusting-Captions-prior-to-Apply-Map/m-p/782897#M1047981</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2014-11-06T17:03:05Z</dc:date>
    </item>
    <item>
      <title>Re: Adjusting Captions prior to Apply Map</title>
      <link>https://community.qlik.com/t5/QlikView/Adjusting-Captions-prior-to-Apply-Map/m-p/782898#M1047982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is what I did. Sorry, I misunderstood!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the best,&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2014 17:07:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Adjusting-Captions-prior-to-Apply-Map/m-p/782898#M1047982</guid>
      <dc:creator />
      <dc:date>2014-11-06T17:07:33Z</dc:date>
    </item>
  </channel>
</rss>

