<?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: separate two values in a field to rows for each value in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/separate-two-values-in-a-field-to-rows-for-each-value/m-p/82910#M606993</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the answer of Eduardo in combination with a crosstable() load statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/qlikview/November2017/Subsystems/Client/Content/Scripting/ScriptPrefixes/crosstable.htm" title="https://help.qlik.com/en-US/qlikview/November2017/Subsystems/Client/Content/Scripting/ScriptPrefixes/crosstable.htm"&gt;https://help.qlik.com/en-US/qlikview/November2017/Subsystems/Client/Content/Scripting/ScriptPrefixes/crosstable.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this crosstable statement will allow you to crreate a table containing 1 row per user&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;once you left join this table back to the original table, this will duplicate rows (not magic, that's what a join does) &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 May 2018 19:44:26 GMT</pubDate>
    <dc:creator>mikaelsc</dc:creator>
    <dc:date>2018-05-23T19:44:26Z</dc:date>
    <item>
      <title>separate two values in a field to rows for each value</title>
      <link>https://community.qlik.com/t5/QlikView/separate-two-values-in-a-field-to-rows-for-each-value/m-p/82908#M606991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a field called Owner that stores user ids like e1r1, mhtr, uert etc. &lt;/P&gt;&lt;P&gt;I am bringing this from a db2 field. Sometimes in each row there are multiple user ids separated by a comma. &lt;/P&gt;&lt;P&gt;I have another table called User_Info in qlikview, that stores first name, last name and user ids.&lt;/P&gt;&lt;P&gt;I need to correlate user ids from the&lt;STRONG&gt; Owner table&lt;/STRONG&gt; to user ids in the &lt;STRONG&gt;USER_Info&lt;/STRONG&gt; table but since there are more than one user ids in each row, I cant do that. &lt;/P&gt;&lt;P&gt;How do I separate user ids in the&lt;STRONG&gt; Owner table&lt;/STRONG&gt; into a new row? Id appreciate the help. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2018 18:28:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/separate-two-values-in-a-field-to-rows-for-each-value/m-p/82908#M606991</guid>
      <dc:creator>diwaskarki</dc:creator>
      <dc:date>2018-05-23T18:28:34Z</dc:date>
    </item>
    <item>
      <title>Re: separate two values in a field to rows for each value</title>
      <link>https://community.qlik.com/t5/QlikView/separate-two-values-in-a-field-to-rows-for-each-value/m-p/82909#M606992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Diwas,&lt;/P&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD SubField(&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Owner table&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; &lt;/SPAN&gt;, ';') AS new_ID&lt;/P&gt;&lt;P&gt;RESIDENT yourtable;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2018 19:40:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/separate-two-values-in-a-field-to-rows-for-each-value/m-p/82909#M606992</guid>
      <dc:creator>eduardo_dimperio</dc:creator>
      <dc:date>2018-05-23T19:40:09Z</dc:date>
    </item>
    <item>
      <title>Re: separate two values in a field to rows for each value</title>
      <link>https://community.qlik.com/t5/QlikView/separate-two-values-in-a-field-to-rows-for-each-value/m-p/82910#M606993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the answer of Eduardo in combination with a crosstable() load statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/qlikview/November2017/Subsystems/Client/Content/Scripting/ScriptPrefixes/crosstable.htm" title="https://help.qlik.com/en-US/qlikview/November2017/Subsystems/Client/Content/Scripting/ScriptPrefixes/crosstable.htm"&gt;https://help.qlik.com/en-US/qlikview/November2017/Subsystems/Client/Content/Scripting/ScriptPrefixes/crosstable.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this crosstable statement will allow you to crreate a table containing 1 row per user&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;once you left join this table back to the original table, this will duplicate rows (not magic, that's what a join does) &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2018 19:44:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/separate-two-values-in-a-field-to-rows-for-each-value/m-p/82910#M606993</guid>
      <dc:creator>mikaelsc</dc:creator>
      <dc:date>2018-05-23T19:44:26Z</dc:date>
    </item>
  </channel>
</rss>

