<?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 Merging a field with several data entries to 1 field in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Merging-a-field-with-several-data-entries-to-1-field/m-p/1528876#M38011</link>
    <description>&lt;P&gt;Hi there,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I’m puzzling on a problem for which you might have a simple solution.&lt;/P&gt;&lt;P&gt;I have 2 tables which I'd like to join. In the 1st table I have the production order with different operations. The combination of the order number and an operation is the object No. and on each single combination I’d like to do a comparision of planned versus actual hours.&lt;/P&gt;&lt;P&gt;In the 2nd table I have different status to this object No (in 1 column) and if I combine these 2 tables I have multiple entries, which I want to prevent.&lt;/P&gt;&lt;P&gt;So, I thought I’d like to join the serveral status (which are saved in several data cells) into 1 field and combine this new field via the object No with table 1. With the filter function I can filter the requested status and do the planned / actual comparison.&lt;/P&gt;&lt;P&gt;Is that possible? Is there maybe a script function like crosstable for such a task? Please check the attached excel, it's difficult to explain.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much in advance.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Christine&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 10 Jan 2019 10:41:36 GMT</pubDate>
    <dc:creator>ctrimborn</dc:creator>
    <dc:date>2019-01-10T10:41:36Z</dc:date>
    <item>
      <title>Merging a field with several data entries to 1 field</title>
      <link>https://community.qlik.com/t5/App-Development/Merging-a-field-with-several-data-entries-to-1-field/m-p/1528876#M38011</link>
      <description>&lt;P&gt;Hi there,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I’m puzzling on a problem for which you might have a simple solution.&lt;/P&gt;&lt;P&gt;I have 2 tables which I'd like to join. In the 1st table I have the production order with different operations. The combination of the order number and an operation is the object No. and on each single combination I’d like to do a comparision of planned versus actual hours.&lt;/P&gt;&lt;P&gt;In the 2nd table I have different status to this object No (in 1 column) and if I combine these 2 tables I have multiple entries, which I want to prevent.&lt;/P&gt;&lt;P&gt;So, I thought I’d like to join the serveral status (which are saved in several data cells) into 1 field and combine this new field via the object No with table 1. With the filter function I can filter the requested status and do the planned / actual comparison.&lt;/P&gt;&lt;P&gt;Is that possible? Is there maybe a script function like crosstable for such a task? Please check the attached excel, it's difficult to explain.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much in advance.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Christine&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 10:41:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Merging-a-field-with-several-data-entries-to-1-field/m-p/1528876#M38011</guid>
      <dc:creator>ctrimborn</dc:creator>
      <dc:date>2019-01-10T10:41:36Z</dc:date>
    </item>
    <item>
      <title>Re: Merging a field with several data entries to 1 field</title>
      <link>https://community.qlik.com/t5/App-Development/Merging-a-field-with-several-data-entries-to-1-field/m-p/1528884#M38013</link>
      <description>&lt;P&gt;TRy something like this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;LOAD&lt;BR /&gt;Auftragsnummer,	&lt;BR /&gt;Vorgang,&lt;BR /&gt;[Objekt-Nummer],&lt;BR /&gt;[Plan Stunden],&lt;BR /&gt;IstStunden&lt;BR /&gt;FROM Tabelle1;&lt;BR /&gt;&lt;BR /&gt;LEFT JOIN LOAD&lt;BR /&gt;[Objekt-Nummer],&lt;BR /&gt;Concat(Status, ' ' ) as Status&lt;BR /&gt;FROM&lt;BR /&gt;Tabelle2;&lt;/PRE&gt;&lt;P&gt;The key here is the Concat-function:&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense/November2018/Subsystems/Hub/Content/Sense_Hub/Scripting/StringAggregationFunctions/concat.htm&amp;nbsp;" target="_blank"&gt;https://help.qlik.com/en-US/sense/November2018/Subsystems/Hub/Content/Sense_Hub/Scripting/StringAggregationFunctions/concat.htm&amp;nbsp;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 10:57:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Merging-a-field-with-several-data-entries-to-1-field/m-p/1528884#M38013</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2019-01-10T10:57:10Z</dc:date>
    </item>
    <item>
      <title>Re: Merging a field with several data entries to 1 field</title>
      <link>https://community.qlik.com/t5/App-Development/Merging-a-field-with-several-data-entries-to-1-field/m-p/1529064#M38036</link>
      <description>&lt;P&gt;YES! It's working &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot and greetings from snowy Switzerland&amp;nbsp;&lt;/P&gt;&lt;P&gt;Christine&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 14:42:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Merging-a-field-with-several-data-entries-to-1-field/m-p/1529064#M38036</guid>
      <dc:creator>ctrimborn</dc:creator>
      <dc:date>2019-01-10T14:42:05Z</dc:date>
    </item>
  </channel>
</rss>

