<?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 divide column value to multiple column values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-divide-column-value-to-multiple-column-values/m-p/504574#M1138027</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Can you attach some sample data?&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>Wed, 02 Oct 2013 17:12:33 GMT</pubDate>
    <dc:creator>jagan</dc:creator>
    <dc:date>2013-10-02T17:12:33Z</dc:date>
    <item>
      <title>How to divide column value to multiple column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-divide-column-value-to-multiple-column-values/m-p/504566#M1138011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one column Adress as Apt,34,Rt1 7Yt,Uk&lt;/P&gt;&lt;P&gt;How to get Adrress filed divided as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Add1= Apt,&lt;/P&gt;&lt;P&gt;Add2= '&amp;nbsp; '&lt;/P&gt;&lt;P&gt;Add3 ='&amp;nbsp; '&lt;/P&gt;&lt;P&gt;Addr4= 34&lt;/P&gt;&lt;P&gt;Addr5= '&amp;nbsp; '&lt;/P&gt;&lt;P&gt;Addr6=Rt1 7YT&lt;/P&gt;&lt;P&gt;Addr7= UK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could anyone help me as I used Subfield to get this but its not showing correct results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Oct 2013 14:07:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-divide-column-value-to-multiple-column-values/m-p/504566#M1138011</guid>
      <dc:creator />
      <dc:date>2013-10-02T14:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to divide column value to multiple column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-divide-column-value-to-multiple-column-values/m-p/504567#M1138012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This could be achieved in 2 steps.&amp;nbsp; I am not sure this is the best way but this is the way I would do it. &lt;/P&gt;&lt;P&gt;I would use the subfield command to break apart the field into as many new columns as values (it looks like you would need 7).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I would search those new columns using WildMatch and then place them into columns that I want.&amp;nbsp; An example is below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SubField(Adress,',',1) as NewColumn1,&amp;nbsp; &lt;/P&gt;&lt;P&gt;SubField([Adress,',',2) as NewColumn2,&amp;nbsp; &lt;/P&gt;&lt;P&gt;SubField(Adress,',',3) as NewColumn3, &lt;/P&gt;&lt;P&gt;SubField(Adress,',',4) as NewColumn4, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then search for each individual new column you want and name the column what you are looking for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(WildMatch(NewColumn1, '*Apt*') &amp;gt; 0, NewColumn1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(WildMatch(NewColumn2, '*Apt*') &amp;gt; 0, NewColumn2,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(WildMatch(NewColumn3, '*Apt*') &amp;gt; 0, NewColumn3,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(WildMatch(NewColumn4, '*Apt*') &amp;gt; 0,NewColumn4)))) as Add1, &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Oct 2013 14:13:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-divide-column-value-to-multiple-column-values/m-p/504567#M1138012</guid>
      <dc:creator>jpapador</dc:creator>
      <dc:date>2013-10-02T14:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to divide column value to multiple column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-divide-column-value-to-multiple-column-values/m-p/504568#M1138013</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;They are more string funcktions.&lt;/P&gt;&lt;P&gt;SubstringCount, and FindOneOf could help you.&lt;/P&gt;&lt;P&gt;Try nesting funcktions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway, it's so difficult to manage open text fields.&lt;/P&gt;&lt;P&gt;adresses are dificult since ones have apartment, others have rooms, other live in single houses with no apartments, etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think the solution is outside the funcktions. Are your adresses from UK only?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Oct 2013 14:15:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-divide-column-value-to-multiple-column-values/m-p/504568#M1138013</guid>
      <dc:creator>christian77</dc:creator>
      <dc:date>2013-10-02T14:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to divide column value to multiple column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-divide-column-value-to-multiple-column-values/m-p/504569#M1138016</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;have you tried subfield? It returns the n word, that is delimited by the comma. Example:&lt;/P&gt;&lt;P&gt;=SubField( 'Apt,34,Rt1 7Yt,Uk', ',', 1 )&lt;/P&gt;&lt;P&gt;Returns Apt&lt;/P&gt;&lt;P&gt;=SubField( 'Apt,34,Rt1 7Yt,Uk', ',', 2 )&lt;/P&gt;&lt;P&gt;Returns 34&lt;/P&gt;&lt;P&gt;Then you could do that in the Script, as:;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SubField( 'Apt,34,Rt1 7Yt,Uk', ',', 1 ) as Add1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;hope I could Help&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Oct 2013 14:17:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-divide-column-value-to-multiple-column-values/m-p/504569#M1138016</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-02T14:17:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to divide column value to multiple column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-divide-column-value-to-multiple-column-values/m-p/504570#M1138018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could do something like this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Add1 = subfield(Address,',',1)&lt;/P&gt;&lt;P&gt;Add2 = ' '&lt;/P&gt;&lt;P&gt;Add3 = ' '&lt;/P&gt;&lt;P&gt;Add4 = subfield(Address,',',2)&lt;/P&gt;&lt;P&gt;Add5 = ' '&lt;/P&gt;&lt;P&gt;Add6 = subfield(Address,',',3)&lt;/P&gt;&lt;P&gt;Add7 = subfield(Address,',',4)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or you could use textbetween() function if the data field is formatted the same for each value&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Oct 2013 14:18:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-divide-column-value-to-multiple-column-values/m-p/504570#M1138018</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-02T14:18:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to divide column value to multiple column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-divide-column-value-to-multiple-column-values/m-p/504571#M1138020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&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;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Years:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;SubField&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Data&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;Add1&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt;'' &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;Add2&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt;'' &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;Add3&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;SubField&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Data&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, ',', 2) &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;Add4&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt;'' &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;Add5&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;SubField&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Data&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, ',', 3) &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;Add6&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;SubField&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Data&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, ',', 4) &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;Add7&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&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;[&lt;BR /&gt;Data&lt;BR /&gt;"Apt,34,Rt1 7Yt,Uk"&lt;BR /&gt;]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&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>Wed, 02 Oct 2013 14:21:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-divide-column-value-to-multiple-column-values/m-p/504571#M1138020</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2013-10-02T14:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to divide column value to multiple column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-divide-column-value-to-multiple-column-values/m-p/504572#M1138022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks ad what If I need to do if it contains blank values as I need to get in straight table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Add1=Apt&lt;/P&gt;&lt;P&gt;Add2=&lt;/P&gt;&lt;P&gt;Addr3=&lt;/P&gt;&lt;P&gt;Addr4=34&lt;/P&gt;&lt;P&gt;Addr5=&lt;/P&gt;&lt;P&gt;Addr6=Rt1 7YT&lt;/P&gt;&lt;P&gt;Addr7=UK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Oct 2013 14:50:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-divide-column-value-to-multiple-column-values/m-p/504572#M1138022</guid>
      <dc:creator />
      <dc:date>2013-10-02T14:50:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to divide column value to multiple column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-divide-column-value-to-multiple-column-values/m-p/504573#M1138025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks and I used the same function but getting values in place of blank values and no values in place of values. could you help me how to sort this problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Oct 2013 14:52:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-divide-column-value-to-multiple-column-values/m-p/504573#M1138025</guid>
      <dc:creator />
      <dc:date>2013-10-02T14:52:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to divide column value to multiple column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-divide-column-value-to-multiple-column-values/m-p/504574#M1138027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Can you attach some sample data?&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>Wed, 02 Oct 2013 17:12:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-divide-column-value-to-multiple-column-values/m-p/504574#M1138027</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2013-10-02T17:12:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to divide column value to multiple column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-divide-column-value-to-multiple-column-values/m-p/504575#M1138030</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;Please find sample Qvw and please help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Oct 2013 10:42:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-divide-column-value-to-multiple-column-values/m-p/504575#M1138030</guid>
      <dc:creator />
      <dc:date>2013-10-03T10:42:05Z</dc:date>
    </item>
    <item>
      <title>Re: Re: How to divide column value to multiple column values</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-divide-column-value-to-multiple-column-values/m-p/504576#M1138032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN lang="ES" style="font-family: 'Arial','sans-serif';"&gt;Hi Amelia.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif';"&gt;I’ve seen your file. As I said before, open text fields are very difficult to manage.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif';"&gt;I asked you a question. Are they all addresses from the UK? Let’s assume that, so they will all have the same format.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif';"&gt;The format is supposed to have 5 fields separated by a coma. For some reason not all of them come correctly written.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif';"&gt;Many are missing. If the Street is missing, we can’t do absolutely anything but inventing data. So discard those with the street missing. Other fields can be uncompleted, but not the street. Imagine somebody tells you, we’ll meet tomorrow at ‘no street’. Would you go to the appointment?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif';"&gt;House or Street Numbers can be identified cause they’re numbers.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif';"&gt;Since it can be a London area and a London street, we can’t do absolutely anything. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif';"&gt;The postal code or ZIP, has a clear format. That’s CAP CAP NUM SPACE CAP NUM NUM. If you have a map of ZIP – TOWN, you can figure out the town for every zip. You may wan’t to have a street mapping but street names are repeated in different towns. Look for the funcktion mapping. They are web pages showing all this maps and they are easy to read with QlikView itself.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif';"&gt;So, with all this reasoning, get to your help page, look for string funcktions and construct your script.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif';"&gt;If you use a chart, you must set it up to see everything. In your chart, null areas don’t show anything. Add a dimension like street.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif';"&gt;You can add those comas missing and then reload the table again.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif';"&gt;Good luck.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Oct 2013 11:30:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-divide-column-value-to-multiple-column-values/m-p/504576#M1138032</guid>
      <dc:creator>christian77</dc:creator>
      <dc:date>2013-10-03T11:30:48Z</dc:date>
    </item>
  </channel>
</rss>

