<?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: Combining data from like fields into one field in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Combining-data-from-like-fields-into-one-field/m-p/532440#M480621</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What you want to happen when all &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Employee_1, Employee_2 and Employee_3&lt;/SPAN&gt; are filled?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 Nov 2013 20:35:08 GMT</pubDate>
    <dc:creator>Clever_Anjos</dc:creator>
    <dc:date>2013-11-15T20:35:08Z</dc:date>
    <item>
      <title>Combining data from like fields into one field</title>
      <link>https://community.qlik.com/t5/QlikView/Combining-data-from-like-fields-into-one-field/m-p/532439#M480620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My data source has three fields that have the same type of data.&amp;nbsp; They were split into three fields because our database UI does not have a multiple selection option for names.&amp;nbsp; This allows the user to select multiple people (up to three).&amp;nbsp; Let's call them Employee_1, Employee_2 and Employee_3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to add code to the load script to combine these fields into one Employee field.&amp;nbsp; I have thought about perhaps concatenating the fields into one, then using the Subfield function, but this seems messy and I end up with extra separators when there are blank fields. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a simple way that fields can be joined?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate any suggestions you may have.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Nov 2013 20:31:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Combining-data-from-like-fields-into-one-field/m-p/532439#M480620</guid>
      <dc:creator>dukane24</dc:creator>
      <dc:date>2013-11-15T20:31:48Z</dc:date>
    </item>
    <item>
      <title>Re: Combining data from like fields into one field</title>
      <link>https://community.qlik.com/t5/QlikView/Combining-data-from-like-fields-into-one-field/m-p/532440#M480621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What you want to happen when all &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Employee_1, Employee_2 and Employee_3&lt;/SPAN&gt; are filled?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Nov 2013 20:35:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Combining-data-from-like-fields-into-one-field/m-p/532440#M480621</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2013-11-15T20:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: Combining data from like fields into one field</title>
      <link>https://community.qlik.com/t5/QlikView/Combining-data-from-like-fields-into-one-field/m-p/532441#M480622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Clever Anjos,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I would like for any one of those Employee names to be a match for that particular row.&amp;nbsp; And if another criteria were chosen for that row, then all three would be a match.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Nov 2013 20:43:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Combining-data-from-like-fields-into-one-field/m-p/532441#M480622</guid>
      <dc:creator>dukane24</dc:creator>
      <dc:date>2013-11-15T20:43:43Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Combining data from like fields into one field</title>
      <link>https://community.qlik.com/t5/QlikView/Combining-data-from-like-fields-into-one-field/m-p/532442#M480623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One approach would be another table with a field Employee that is linked to your table by an ID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_text_macro _jivemacro_uid_13845487513465682 jive_macro_code" jivemacro_uid="_13845487513465682" modifiedtitle="true"&gt;
&lt;P&gt;SearchTable:&lt;/P&gt;
&lt;P&gt;LOAD&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ID, // ID to your table&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Employee_1 as Employee&lt;/P&gt;
&lt;P&gt;resident yourtable;&lt;/P&gt;
&lt;P&gt;Concatenate&lt;/P&gt;
&lt;P&gt;LOAD&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ID, // ID to your table&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Employee_2 as Employee&lt;/P&gt;
&lt;P&gt;resident yourtable;&lt;/P&gt;
&lt;P&gt;Concatenate&lt;/P&gt;
&lt;P&gt;LOAD&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ID, // ID to your table&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Employee_3 as Employee&lt;/P&gt;
&lt;P&gt;resident yourtable;&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Nov 2013 20:52:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Combining-data-from-like-fields-into-one-field/m-p/532442#M480623</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2013-11-15T20:52:47Z</dc:date>
    </item>
  </channel>
</rss>

