<?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: How to split column in to two columns in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545469#M1124352</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amelia, Nagan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Subfield is OK but you have to specify the position of the comma you want to split.&lt;/P&gt;&lt;P&gt;If no position, default is 0 and will split as &lt;STRONG&gt;32 Beach Drive only&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;So you need to split &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SubField(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Address&lt;/SPAN&gt;,',', 5) to get the last field&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;to get the whole other part, you may trick with &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;left(your-string, len(your_string - len(&lt;STRONG&gt;SubField(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Address&lt;/SPAN&gt;,',', 5)-2))&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;STRONG&gt;&lt;STRONG&gt;len(&lt;STRONG&gt;SubField(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Address&lt;/SPAN&gt;,',', 5)-2))&amp;nbsp; this will gives you the len to remove from the original string&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;STRONG&gt;&lt;STRONG&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;STRONG&gt;&lt;STRONG&gt;&lt;STRONG&gt;best regards&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;STRONG&gt;&lt;STRONG&gt;&lt;STRONG&gt;chris&lt;BR /&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Jan 2014 14:56:01 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-01-21T14:56:01Z</dc:date>
    <item>
      <title>How to split column in to two columns</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545466#M1124349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have Address column like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;32 Beach Drive, Scratby, Great mouth, folk, UK, UY29 3NP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I get &lt;STRONG&gt;32 Beach Drive, Scratby, Great mouth, folk, UK&lt;/STRONG&gt; in one column and &lt;STRONG&gt;UY29 3NP&lt;/STRONG&gt; in another column.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anyone help me please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 14:46:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545466#M1124349</guid>
      <dc:creator />
      <dc:date>2014-01-21T14:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to split column in to two columns</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545467#M1124350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load SubField(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Address&lt;/SPAN&gt;,',') as Address from table;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry I think you need to us if condition.&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;If (Address ='UY29' or Address='3NP',Address) as Col1,&lt;/P&gt;&lt;P&gt;If (Address &amp;lt;&amp;gt; 'UY29' and Address &amp;lt;&amp;gt; '3NP',Address) as Col2&lt;/P&gt;&lt;P&gt;from table;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers!!&lt;/P&gt;&lt;P&gt;Jagan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 14:48:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545467#M1124350</guid>
      <dc:creator>jagannalla</dc:creator>
      <dc:date>2014-01-21T14:48:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to split column in to two columns</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545468#M1124351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amelia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you could try these two expressions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left(Field, index(Field, ',',substringcount( Field, ',')) - 1)&lt;/P&gt;&lt;P&gt;mid(Field, index(Field, ',',substringcount( Field, ',')) + 1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 14:51:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545468#M1124351</guid>
      <dc:creator>marcus_malinow</dc:creator>
      <dc:date>2014-01-21T14:51:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to split column in to two columns</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545469#M1124352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amelia, Nagan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Subfield is OK but you have to specify the position of the comma you want to split.&lt;/P&gt;&lt;P&gt;If no position, default is 0 and will split as &lt;STRONG&gt;32 Beach Drive only&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;So you need to split &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SubField(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Address&lt;/SPAN&gt;,',', 5) to get the last field&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;to get the whole other part, you may trick with &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;left(your-string, len(your_string - len(&lt;STRONG&gt;SubField(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Address&lt;/SPAN&gt;,',', 5)-2))&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;STRONG&gt;&lt;STRONG&gt;len(&lt;STRONG&gt;SubField(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Address&lt;/SPAN&gt;,',', 5)-2))&amp;nbsp; this will gives you the len to remove from the original string&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;STRONG&gt;&lt;STRONG&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;STRONG&gt;&lt;STRONG&gt;&lt;STRONG&gt;best regards&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;STRONG&gt;&lt;STRONG&gt;&lt;STRONG&gt;chris&lt;BR /&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 14:56:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545469#M1124352</guid>
      <dc:creator />
      <dc:date>2014-01-21T14:56:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to split column in to two columns</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545470#M1124353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the first string&lt;/P&gt;&lt;P&gt;=Left('32 Beach Drive, Scratby, Great mouth, folk, UK, UY29 3NP', index('32 Beach Drive, Scratby, Great mouth, folk, UK, UY29 3NP', ', ', 5) -1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the second string&lt;/P&gt;&lt;P&gt;SubField('32 Beach Drive, Scratby, Great mouth, folk, UK, UY29 3NP', ', ', 6)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 15:02:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545470#M1124353</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-01-21T15:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to split column in to two columns</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545471#M1124354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SubField('32 Beach Drive, Scratby, Great mouth, folk, UK, UY29 3NP', ',',-1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;SubField(&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;Address&lt;/SPAN&gt;,',', -1)&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 15:03:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545471#M1124354</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2014-01-21T15:03:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to split column in to two columns</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545472#M1124355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is a general solution, hope it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; * &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;INLINE&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[&amp;nbsp; &lt;BR /&gt;&lt;BR /&gt;NUM,Address&lt;BR /&gt;&lt;BR /&gt;1,"32 Beach Drive, Scratby, Great mouth, folk, UK, UY29 3NP"&amp;nbsp; &lt;BR /&gt;&lt;BR /&gt;2,"42 Beach Drive, Scratby, Great mouth, folk, aaa, UK, vvvv"&lt;BR /&gt;&lt;BR /&gt;3,"52 Beach Drive, Scratby, Great mouth, folk, bbb, ccc, UK, kkkk"&lt;BR /&gt;&lt;BR /&gt;4,"62 Beach Drive, Scratby, Great mouth, folk, UK, zzzz"&lt;BR /&gt;&lt;BR /&gt;]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;;&amp;nbsp; &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;EVAL:&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;NoConcatenate&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; *, &lt;BR /&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Left&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Address&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;FindOneOf&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Address&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, ',', &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;SubStringCount&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Address&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, ','))-1) &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;FirstPart&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Mid&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Address&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;FindOneOf&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Address&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, ',', &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;SubStringCount&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Address&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, ','))+1) &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;SecondPart&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Resident&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; Data;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;DROP&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Table&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; Data; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 15:05:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545472#M1124355</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2014-01-21T15:05:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to split column in to two columns</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545473#M1124356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="2014-01-21_1532.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/51837_2014-01-21_1532.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 15:33:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545473#M1124356</guid>
      <dc:creator>rustyfishbones</dc:creator>
      <dc:date>2014-01-21T15:33:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to split column in to two columns</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545474#M1124357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Thanks very much.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can able to get this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 16:32:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545474#M1124357</guid>
      <dc:creator />
      <dc:date>2014-01-21T16:32:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to split column in to two columns</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545475#M1124358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amelia,&lt;/P&gt;&lt;P&gt;please copy my example, it works and is a general solution...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 16:33:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545475#M1124358</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2014-01-21T16:33:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to split column in to two columns</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545476#M1124359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&amp;nbsp; Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please help me as I am trying to get the Address as parts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I,e could I get te second part and third part separately,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i,e Scartby as one column&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Great nouth as another column .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me this is the one I need to sort out please.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 16:40:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545476#M1124359</guid>
      <dc:creator />
      <dc:date>2014-01-21T16:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to split column in to two columns</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545477#M1124360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amelia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;probably the easiest solution is to use SubField.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example SubField(Address, ',' 1) will retrieve the first part, SubField(Address, ',' 2) the second, etc...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may wish to include an If condition around each so that if the subfield doesn't exist it doesn't error.&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; If (SubstringCount(Address,',')&amp;gt;=1, SubField(Address, ',' 1), Null()) as FirstPart,&lt;/P&gt;&lt;P&gt; If (SubstringCount(Address,',')&amp;gt;=2, SubField(Address, ',' 2), Null()) as SecondPart,&lt;/P&gt;&lt;P&gt;etc...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marcus&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 16:45:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545477#M1124360</guid>
      <dc:creator>marcus_malinow</dc:creator>
      <dc:date>2014-01-21T16:45:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to split column in to two columns</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545478#M1124362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Amelia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just say SUBFIELD(Address,',',) to get them all separted&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 16:49:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545478#M1124362</guid>
      <dc:creator>rustyfishbones</dc:creator>
      <dc:date>2014-01-21T16:49:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to split column in to two columns</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545479#M1124363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried this but it is showing error at '1' place. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me how to set this as I am really struggling this to get this done since days. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 16:50:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545479#M1124363</guid>
      <dc:creator />
      <dc:date>2014-01-21T16:50:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to split column in to two columns</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545480#M1124365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks and I used the SUBFIELD and it showing values incorrect order&lt;BR /&gt;Is there any other way to get this. Please this becomes now as big task for me. please help. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 16:52:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545480#M1124365</guid>
      <dc:creator />
      <dc:date>2014-01-21T16:52:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to split column in to two columns</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545481#M1124367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Aah, a couple of missing commas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If (SubstringCount(Address,',')&amp;gt;=1, SubField(Address, ','&lt;STRONG&gt;,&lt;/STRONG&gt; 1), Null()) as FirstPart,&lt;/P&gt;&lt;P&gt; If (SubstringCount(Address,',')&amp;gt;=2, SubField(Address, ','&lt;STRONG&gt;,&lt;/STRONG&gt; 2), Null()) as SecondPart,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 17:01:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545481#M1124367</guid>
      <dc:creator>marcus_malinow</dc:creator>
      <dc:date>2014-01-21T17:01:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to split column in to two columns</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545482#M1124369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks and I used the same and it's showing data when there is no data in second place. I need to have blank values if there is no data and values if there is data exists. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Please could help me how to set this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jan 2014 09:58:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545482#M1124369</guid>
      <dc:creator />
      <dc:date>2014-01-22T09:58:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to split column in to two columns</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545483#M1124370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If there are blank values or no data, these need to be separated by a comma, otherwise it won't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so if the data is like &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: 12px;"&gt; 32 Beach Drive, Scratby, Great mouth, folk, UK, UY29 3NP (this will be fine)&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: 12px;"&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: 12px;"&gt;if it's like this&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: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;32 Beach Drive, , , , UK, UY29 3NP (it will also be fine)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;however, if other addresses are like this&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; 32 Beach Drive,folk, UK, UY29 3NP (&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px;"&gt;it will not be fine&lt;/SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; you need to understand the Address field data first before you decide what function will be required to return the correct result&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&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: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jan 2014 10:12:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545483#M1124370</guid>
      <dc:creator>rustyfishbones</dc:creator>
      <dc:date>2014-01-22T10:12:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to split column in to two columns</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545484#M1124371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks and yes you are right I have most of the data as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;32 Beach Drive,folk, UK, UY29 3NP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so, in thus case how can I set this with out any issues. please help me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jan 2014 10:43:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545484#M1124371</guid>
      <dc:creator />
      <dc:date>2014-01-22T10:43:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to split column in to two columns</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545485#M1124373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Where is the Source Data coming from? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Excel, Access, or a Database?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jan 2014 10:59:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-column-in-to-two-columns/m-p/545485#M1124373</guid>
      <dc:creator>rustyfishbones</dc:creator>
      <dc:date>2014-01-22T10:59:27Z</dc:date>
    </item>
  </channel>
</rss>

