<?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: Re: Joining fields when it is a specific value in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Joining-fields-when-it-is-a-specific-value/m-p/681381#M247027</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can concatenate in the load script.&amp;nbsp; See attached.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 Jul 2014 18:49:41 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-07-15T18:49:41Z</dc:date>
    <item>
      <title>Joining fields when it is a specific value</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-fields-when-it-is-a-specific-value/m-p/681379#M247025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;I want to join three fields together but I only want the third field to show if it is a specific value. What is the best way to do this in the script? &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;For example, I have three fields: &lt;EM&gt;Product&lt;/EM&gt;, &lt;EM&gt;Location&lt;/EM&gt;, &lt;EM&gt;Color&lt;/EM&gt;. &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;I want to combine product_value + location_value + color_value (only if it is yellow). If it is not yellow, then I only want the new field to have &lt;EM&gt;Product_value&lt;/EM&gt; + &lt;EM&gt;Location_value&lt;/EM&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2014 18:17:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-fields-when-it-is-a-specific-value/m-p/681379#M247025</guid>
      <dc:creator />
      <dc:date>2014-07-15T18:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: Joining fields when it is a specific value</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-fields-when-it-is-a-specific-value/m-p/681380#M247026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if i understood&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load Product_value,Location_Value&lt;/P&gt;&lt;P&gt;from table1;&lt;/P&gt;&lt;P&gt;join&lt;/P&gt;&lt;P&gt;Load Product_value ,&lt;/P&gt;&lt;P&gt;Location_Value,&lt;/P&gt;&lt;P&gt;Color_value&lt;/P&gt;&lt;P&gt;resident table2 where Color_value='yellow';&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2014 18:37:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-fields-when-it-is-a-specific-value/m-p/681380#M247026</guid>
      <dc:creator>preminqlik</dc:creator>
      <dc:date>2014-07-15T18:37:11Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Joining fields when it is a specific value</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-fields-when-it-is-a-specific-value/m-p/681381#M247027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can concatenate in the load script.&amp;nbsp; See attached.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2014 18:49:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-fields-when-it-is-a-specific-value/m-p/681381#M247027</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-15T18:49:41Z</dc:date>
    </item>
    <item>
      <title>Re: Joining fields when it is a specific value</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-fields-when-it-is-a-specific-value/m-p/681382#M247028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I still need those product and location fields so I used the below to create a new field.... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(Color='Yellow',Product &amp;amp; Location &amp;amp; Color,Product &amp;amp; Location) as NewField&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for your help as it was very helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2014 19:39:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-fields-when-it-is-a-specific-value/m-p/681382#M247028</guid>
      <dc:creator />
      <dc:date>2014-07-15T19:39:59Z</dc:date>
    </item>
  </channel>
</rss>

