<?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 t separate postcode from complete address field? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990526#M971621</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I thought of doing it this way, but the only problem is that if there is another HJ in the SubField('...', 'HJ', 2) might not give you the right result.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Sep 2015 09:34:47 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2015-09-21T09:34:47Z</dc:date>
    <item>
      <title>How t separate postcode from complete address field?</title>
      <link>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990516#M971611</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 field as below in table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4 Mountview, Keady, wards HJ60 3RG&lt;/P&gt;&lt;P&gt;34 Wyndell Heights, wards HJ23 7GX&lt;/P&gt;&lt;P&gt;234 Bawnmore Park, wards HJ36 7BQ&lt;/P&gt;&lt;P&gt;56 Thornbrooke, Ahoghill, Toristreet, HJ42 1PZ&lt;/P&gt;&lt;P&gt;Woodlands, 2 Bachelors, Portadown, wards HJ63 5BQ&lt;/P&gt;&lt;P&gt;90 Leven Park, Huyyijane, HJ5 7JA&lt;/P&gt;&lt;P&gt;98 Dunsuivnish Avenue, wards HJ55 7EP&lt;/P&gt;&lt;P&gt;5e Castle Hill, Toristreet, HJ70 1JP&lt;/P&gt;&lt;P&gt;23 Dunsuivnish Avenue, Toristreet, HJ55 7EP&lt;/P&gt;&lt;P&gt;78 Flax Valley, Irvinestown, Enniskillen, HJ94 1FL&lt;/P&gt;&lt;P&gt;12 Flax Valley, Irvinestown, Enniskillen, HJ94 1FL&lt;/P&gt;&lt;P&gt;2 Newtown Road, Camlough, Huyyijane, HJ35 7JJ&lt;/P&gt;&lt;P&gt;11 Newtown Road, Camlough, Huyyijane, HJ35 7JJ&lt;/P&gt;&lt;P&gt;67 St Oliver Plunkett Park, Camlough, Huyyijane, HJ35 7JE&lt;/P&gt;&lt;P&gt;43 St Oliver Plunkett Park, Camlough, Huyyijane, HJ35 7JE&lt;/P&gt;&lt;P&gt;45 Ballybeen Park, Dundonald, Huyyijane, HJ16 2QB&lt;/P&gt;&lt;P&gt;90 Abbey Ring, Holywood, HJ18 9NS&lt;/P&gt;&lt;P&gt;23 Abbey Ring, Holywood, HJ18 9NS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to separate Postcdoe from complete address. Always postcode starts with 'HJ'. how to separate postcode from entire address for each address value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please can anyone suggest me how to do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2015 09:01:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990516#M971611</guid>
      <dc:creator />
      <dc:date>2015-09-21T09:01:29Z</dc:date>
    </item>
    <item>
      <title>Re: How t separate postcode from complete address field?</title>
      <link>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990517#M971612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="text-decoration: line-through;"&gt;SubField(Address, ' ', -2) as PostCode&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="text-decoration: line-through;"&gt;Left(Address, Len(Address) - 10) as Address&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="text-decoration: line-through;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SubField(Address, ' ', -2) &amp;amp; ' ' &amp;amp; SubField(Address, ' ', -1) as PostCode,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Left(Address, Len(Address) - 9) as Address&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2015 09:03:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990517#M971612</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-09-21T09:03:18Z</dc:date>
    </item>
    <item>
      <title>Re: How t separate postcode from complete address field?</title>
      <link>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990518#M971613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. when I used this it is showing only first half part of postcode&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for eg: the complete postcode in below address is HJ60 3RG&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4 Mountview, Keady, wards HJ60 3RG&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but it is showing only HJ60&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do I need to modify anything here?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2015 09:08:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990518#M971613</guid>
      <dc:creator />
      <dc:date>2015-09-21T09:08:47Z</dc:date>
    </item>
    <item>
      <title>Re: How t separate postcode from complete address field?</title>
      <link>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990519#M971614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD SubField(Address, ' ', -2) &amp;amp; ' ' &amp;amp; SubField(Address, ' ', -1) as PostCode,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Left(Address, Len(Address) - 9) as Address;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * Inline [&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Address&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;4 Mountview, Keady, wards HJ60 3RG&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;34 Wyndell Heights, wards HJ23 7GX&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;234 Bawnmore Park, wards HJ36 7BQ&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;56 Thornbrooke, Ahoghill, Toristreet, HJ42 1PZ&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Woodlands, 2 Bachelors, Portadown, wards HJ63 5BQ&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;90 Leven Park, Huyyijane, HJ5 7JA&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;98 Dunsuivnish Avenue, wards HJ55 7EP&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;5e Castle Hill, Toristreet, HJ70 1JP&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;23 Dunsuivnish Avenue, Toristreet, HJ55 7EP&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;78 Flax Valley, Irvinestown, Enniskillen, HJ94 1FL&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;12 Flax Valley, Irvinestown, Enniskillen, HJ94 1FL&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2 Newtown Road, Camlough, Huyyijane, HJ35 7JJ&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;11 Newtown Road, Camlough, Huyyijane, HJ35 7JJ&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;67 St Oliver Plunkett Park, Camlough, Huyyijane, HJ35 7JE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;43 St Oliver Plunkett Park, Camlough, Huyyijane, HJ35 7JE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;45 Ballybeen Park, Dundonald, Huyyijane, HJ16 2QB&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;90 Abbey Ring, Holywood, HJ18 9NS&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;23 Abbey Ring, Holywood, HJ18 9NS&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;] (delimiter is |);&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;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/99505_Capture.PNG" style="height: auto;" /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2015 09:09:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990519#M971614</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-09-21T09:09:34Z</dc:date>
    </item>
    <item>
      <title>Re: How t separate postcode from complete address field?</title>
      <link>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990520#M971615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Modified that above code. Please check again&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2015 09:11:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990520#M971615</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-09-21T09:11:18Z</dc:date>
    </item>
    <item>
      <title>Re: How t separate postcode from complete address field?</title>
      <link>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990521#M971616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great Thanks. just checked your modify script. for some of the address there is no postcode like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;109 Ashgrove Manor Killpo Donegal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the Postcode filed for above address it is showing as &lt;STRONG&gt;Killpo Donegal&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to change the script to not enter into Postcode field when there is no postcod ein complete address? so I need the Postcode column should show blank when there is no Postcode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;would it be possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2015 09:12:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990521#M971616</guid>
      <dc:creator />
      <dc:date>2015-09-21T09:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: How t separate postcode from complete address field?</title>
      <link>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990522#M971617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T&lt;STRONG&gt;able:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD If(Left(SubField(Address, ' ', -2), 2) = 'HJ', SubField(Address, ' ', -2) &amp;amp; ' ' &amp;amp; SubField(Address, ' ', -1)) as PostCode,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; If(Left(SubField(Address, ' ', -2), 2) = 'HJ', Left(Address, Len(Address) - 9), Address) as Address;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * Inline [&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Address&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;4 Mountview, Keady, wards HJ60 3RG&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;34 Wyndell Heights, wards HJ23 7GX&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;234 Bawnmore Park, wards HJ36 7BQ&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;56 Thornbrooke, Ahoghill, Toristreet, HJ42 1PZ&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Woodlands, 2 Bachelors, Portadown, wards HJ63 5BQ&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;90 Leven Park, Huyyijane, HJ5 7JA&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;98 Dunsuivnish Avenue, wards HJ55 7EP&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;5e Castle Hill, Toristreet, HJ70 1JP&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;23 Dunsuivnish Avenue, Toristreet, HJ55 7EP&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;78 Flax Valley, Irvinestown, Enniskillen, HJ94 1FL&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;12 Flax Valley, Irvinestown, Enniskillen, HJ94 1FL&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2 Newtown Road, Camlough, Huyyijane, HJ35 7JJ&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;11 Newtown Road, Camlough, Huyyijane, HJ35 7JJ&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;67 St Oliver Plunkett Park, Camlough, Huyyijane, HJ35 7JE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;43 St Oliver Plunkett Park, Camlough, Huyyijane, HJ35 7JE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;45 Ballybeen Park, Dundonald, Huyyijane, HJ16 2QB&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;90 Abbey Ring, Holywood, HJ18 9NS&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;23 Abbey Ring, Holywood, HJ18 9NS&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;109 Ashgrove Manor Killpo Donegal&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;] (delimiter is |);&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2015 09:19:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990522#M971617</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-09-21T09:19:25Z</dc:date>
    </item>
    <item>
      <title>Re: How t separate postcode from complete address field?</title>
      <link>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990523#M971618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Excellent. Thanks. one last request please when there is gap in between Postcode like below how to get these type of Postcodes into Postcode column&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;90 Railway Court, Dungiven, Yo Janerry HJ 34 4IU&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2015 09:24:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990523#M971618</guid>
      <dc:creator />
      <dc:date>2015-09-21T09:24:31Z</dc:date>
    </item>
    <item>
      <title>Re: How t separate postcode from complete address field?</title>
      <link>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990524#M971619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try&lt;/P&gt;&lt;P&gt;= 'HJ'&amp;amp;SubField(&lt;STRONG&gt;yourText&lt;/STRONG&gt;,'HJ',2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hth&lt;/P&gt;&lt;P&gt;Sasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2015 09:25:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990524#M971619</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2015-09-21T09:25:01Z</dc:date>
    </item>
    <item>
      <title>Re: How t separate postcode from complete address field?</title>
      <link>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990525#M971620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD If(Left(SubField(Address, ' ', -2), 2) = 'HJ', SubField(Address, ' ', -2) &amp;amp; ' ' &amp;amp; SubField(Address, ' ', -1),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; If(Left(SubField(Address, ' ', -3), 2) = 'HJ', SubField(Address, ' ', -3) &amp;amp; ' ' &amp;amp; SubField(Address, ' ', -2) &amp;amp; ' ' &amp;amp; SubField(Address, ' ', -1))) as PostCode,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; If(Left(SubField(Address, ' ', -2), 2) = 'HJ', Left(Address, Len(Address) - 9),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; If(Left(SubField(Address, ' ', -3), 2) = 'HJ', Left(Address, Len(Address) - 10), Address)) as Address;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * Inline [&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Address&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;4 Mountview, Keady, wards HJ60 3RG&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;34 Wyndell Heights, wards HJ23 7GX&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;234 Bawnmore Park, wards HJ36 7BQ&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;56 Thornbrooke, Ahoghill, Toristreet, HJ42 1PZ&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Woodlands, 2 Bachelors, Portadown, wards HJ63 5BQ&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;90 Leven Park, Huyyijane, HJ5 7JA&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;98 Dunsuivnish Avenue, wards HJ55 7EP&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;5e Castle Hill, Toristreet, HJ70 1JP&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;23 Dunsuivnish Avenue, Toristreet, HJ55 7EP&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;78 Flax Valley, Irvinestown, Enniskillen, HJ94 1FL&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;12 Flax Valley, Irvinestown, Enniskillen, HJ94 1FL&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2 Newtown Road, Camlough, Huyyijane, HJ35 7JJ&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;11 Newtown Road, Camlough, Huyyijane, HJ35 7JJ&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;67 St Oliver Plunkett Park, Camlough, Huyyijane, HJ35 7JE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;43 St Oliver Plunkett Park, Camlough, Huyyijane, HJ35 7JE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;45 Ballybeen Park, Dundonald, Huyyijane, HJ16 2QB&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;90 Abbey Ring, Holywood, HJ18 9NS&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;23 Abbey Ring, Holywood, HJ18 9NS&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;109 Ashgrove Manor Killpo Donegal&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;90 Railway Court, Dungiven, Yo Janerry HJ 34 4IU&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;] (delimiter is |);&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2015 09:32:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990525#M971620</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-09-21T09:32:48Z</dc:date>
    </item>
    <item>
      <title>Re: How t separate postcode from complete address field?</title>
      <link>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990526#M971621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I thought of doing it this way, but the only problem is that if there is another HJ in the SubField('...', 'HJ', 2) might not give you the right result.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2015 09:34:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990526#M971621</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-09-21T09:34:47Z</dc:date>
    </item>
    <item>
      <title>Re: How t separate postcode from complete address field?</title>
      <link>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990527#M971622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The address looks like in mixed case.. so it might not be unsafe to use HJ as a delimeter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2015 09:43:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990527#M971622</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2015-09-21T09:43:10Z</dc:date>
    </item>
    <item>
      <title>Re: How t separate postcode from complete address field?</title>
      <link>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990528#M971623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. working. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2015 09:43:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990528#M971623</guid>
      <dc:creator />
      <dc:date>2015-09-21T09:43:15Z</dc:date>
    </item>
    <item>
      <title>Re: How t separate postcode from complete address field?</title>
      <link>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990529#M971624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your help. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2015 09:43:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990529#M971624</guid>
      <dc:creator />
      <dc:date>2015-09-21T09:43:42Z</dc:date>
    </item>
    <item>
      <title>Re: How t separate postcode from complete address field?</title>
      <link>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990530#M971625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. working.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2015 09:45:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990530#M971625</guid>
      <dc:creator />
      <dc:date>2015-09-21T09:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: How t separate postcode from complete address field?</title>
      <link>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990531#M971626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;you can try like this also,This is the simplest way.&lt;/P&gt;&lt;P&gt;address:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;address&lt;/P&gt;&lt;P&gt;"4 Mountview, Keady, wards HJ60 3RG",&lt;/P&gt;&lt;P&gt;"34 Wyndell Heights, wards HJ23 7GX",&lt;/P&gt;&lt;P&gt;"234 Bawnmore Park, wards HJ36 7BQ",&lt;/P&gt;&lt;P&gt;"56 Thornbrooke, Ahoghill, Toristreet, HJ42 1PZ",&lt;/P&gt;&lt;P&gt;"Woodlands, 2 Bachelors, Portadown, wards HJ63 5BQ",&lt;/P&gt;&lt;P&gt;"90 Leven Park, Huyyijane, HJ5 7JA",&lt;/P&gt;&lt;P&gt;"98 Dunsuivnish Avenue, wards HJ55 7EP",&lt;/P&gt;&lt;P&gt;"5e Castle Hill, Toristreet, HJ70 1JP",&lt;/P&gt;&lt;P&gt;"23 Dunsuivnish Avenue, Toristreet, HJ55 7EP",&lt;/P&gt;&lt;P&gt;"78 Flax Valley, Irvinestown, Enniskillen, HJ94 1FL",&lt;/P&gt;&lt;P&gt;"12 Flax Valley, Irvinestown, Enniskillen, HJ94 1FL",&lt;/P&gt;&lt;P&gt;"2 Newtown Road, Camlough, Huyyijane, HJ35 7JJ",&lt;/P&gt;&lt;P&gt;"11 Newtown Road, Camlough, Huyyijane, HJ35 7JJ",&lt;/P&gt;&lt;P&gt;"67 St Oliver Plunkett Park, Camlough, Huyyijane, HJ35 7JE",&lt;/P&gt;&lt;P&gt;"43 St Oliver Plunkett Park, Camlough, Huyyijane, HJ35 7JE",&lt;/P&gt;&lt;P&gt;"45 Ballybeen Park, Dundonald, Huyyijane, HJ16 2QB",&lt;/P&gt;&lt;P&gt;"90 Abbey Ring, Holywood, HJ18 9NS",&lt;/P&gt;&lt;P&gt;"23 Abbey Ring, Holywood, HJ18 9NS"&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ad:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;load&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; mid(mid(address,index(address,',',-1)+1,len(address)),index( mid(address,index(address,',',-1)+1,len(address)),'H')) as Pincode&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Resident &lt;/P&gt;&lt;P&gt;address;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop table address;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Koti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2015 12:50:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990531#M971626</guid>
      <dc:creator>d_koti24</dc:creator>
      <dc:date>2015-09-21T12:50:47Z</dc:date>
    </item>
    <item>
      <title>Re: How t separate postcode from complete address field?</title>
      <link>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990532#M971627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;can i write Like this?&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;load&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;mid(mid(address,index(address,',',-1)+1,len(address)),index( mid(address,index(address,',',-1)+1,len(address)),'H')) as Pincode&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Resident&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;address;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2015 12:53:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990532#M971627</guid>
      <dc:creator>d_koti24</dc:creator>
      <dc:date>2015-09-21T12:53:25Z</dc:date>
    </item>
    <item>
      <title>Re: How t separate postcode from complete address field?</title>
      <link>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990533#M971628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It seems to be doing the job &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;. But seems a little complicated to comprehend, although what I proposed might not be easy as well. I guess it comes down to testing it extensively with the actual data to see which one is better all the time. If both are correct, the developer can choose whichever is easier for them to comprehend.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2015 13:01:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-t-separate-postcode-from-complete-address-field/m-p/990533#M971628</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-09-21T13:01:20Z</dc:date>
    </item>
  </channel>
</rss>

