#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
PH NEWS
 
Posts: n/a
Default Postcodes

Hi,

I need a formula that will extract the part of a post code I want. I would
like to extract the first letter or letters from a postcode to use in a
VLOOKUP. My problem is that there can be one letter or two letters at the
start of the postcode.
So if the postcode is B1 1AZ the formula result would be B and if the
formula is BA1 1AZ the result would be BA.

Thanks


  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
 
Posts: n/a
Default Postcodes

The other problem which you haven't mentioned is that the numeric part
could be more than one character long (EG SG15 2ST)

with a postcode in A1, this formula gets to the first part of the code

=LEFT(A1,SEARCH(" ",A1)-1)

however, it doesn't resolve it - SO would suggest using a user defined
function as follows


Function pcodereturn(Postcode As String)
While Left(Postcode, 1) < " " And (Asc(Left(Postcode, 1)) < 48 Or
Asc(Left(Postcode, 1)) 57)
pcodereturn = pcodereturn & Left(Postcode, 1)
Postcode = Right(Postcode, Len(Postcode) - 1)
Wend


End Function

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
PH NEWS
 
Posts: n/a
Default Postcodes

I didn't think it matter how many numbers were in the code. All I wanted to
do was extract the letters. I thought there may be a function to say, find
number in range, return position, and then use that number in a LEFT
function? So in your example SG15 2ST excel would return a 3 as that is the
position of the number and then I could use that minus 1 in a LEFT. So it
wouldn't matter if it were SG155454256 2ST, however it would matter if the
code was S155454256 2ST, as I would now need the result 1.
Do you know if there is a symbol or one of the number keys apply with shift
that tells excel just to find any number?
Thanks for your first relply.

SPL
wrote in message
oups.com...
The other problem which you haven't mentioned is that the numeric part
could be more than one character long (EG SG15 2ST)

with a postcode in A1, this formula gets to the first part of the code

=LEFT(A1,SEARCH(" ",A1)-1)

however, it doesn't resolve it - SO would suggest using a user defined
function as follows


Function pcodereturn(Postcode As String)
While Left(Postcode, 1) < " " And (Asc(Left(Postcode, 1)) < 48 Or
Asc(Left(Postcode, 1)) 57)
pcodereturn = pcodereturn & Left(Postcode, 1)
Postcode = Right(Postcode, Len(Postcode) - 1)
Wend


End Function



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
PH NEWS
 
Posts: n/a
Default Postcodes

I've just thought of something after I sent the reply, by using the formula
you sent me I always get the first part of the code as it finds the space.
So there are only two combination of the first part letter letter number
number or letter number number. So if you use a LEN to count the characters
if it equals 4 the LEFT function should be two if it equals 3 the LEFT
function should be 1. Right?
Again, thanks.
SPL
wrote in message
oups.com...
The other problem which you haven't mentioned is that the numeric part
could be more than one character long (EG SG15 2ST)

with a postcode in A1, this formula gets to the first part of the code

=LEFT(A1,SEARCH(" ",A1)-1)

however, it doesn't resolve it - SO would suggest using a user defined
function as follows


Function pcodereturn(Postcode As String)
While Left(Postcode, 1) < " " And (Asc(Left(Postcode, 1)) < 48 Or
Asc(Left(Postcode, 1)) 57)
pcodereturn = pcodereturn & Left(Postcode, 1)
Postcode = Right(Postcode, Len(Postcode) - 1)
Wend


End Function



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
PH NEWS
 
Posts: n/a
Default Postcodes

Nope that's wrong, you can have letter letter number
"PH NEWS" wrote in message
...
I've just thought of something after I sent the reply, by using the

formula
you sent me I always get the first part of the code as it finds the space.
So there are only two combination of the first part letter letter number
number or letter number number. So if you use a LEN to count the

characters
if it equals 4 the LEFT function should be two if it equals 3 the LEFT
function should be 1. Right?
Again, thanks.
SPL
wrote in message
oups.com...
The other problem which you haven't mentioned is that the numeric part
could be more than one character long (EG SG15 2ST)

with a postcode in A1, this formula gets to the first part of the code

=LEFT(A1,SEARCH(" ",A1)-1)

however, it doesn't resolve it - SO would suggest using a user defined
function as follows


Function pcodereturn(Postcode As String)
While Left(Postcode, 1) < " " And (Asc(Left(Postcode, 1)) < 48 Or
Asc(Left(Postcode, 1)) 57)
pcodereturn = pcodereturn & Left(Postcode, 1)
Postcode = Right(Postcode, Len(Postcode) - 1)
Wend


End Function







  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
PH NEWS
 
Posts: n/a
Default Postcodes

A little untidy but this works.

Assuming the postcode is in D12, in E12 I have

=IF(ISERROR((VALUE(MID(D12,2,1)))),"10",(VALUE(MID (D12,2,1))))

and in F12 I have

=IF(E12<=9,LEFT(D12,1),LEFT(D12,2))

I'm having trouble putting these two together in the same cell but I think
that might have something to do with it being IF(IF. If anyone could help I
would be very grateful!

"PH NEWS" wrote in message
...
Hi,

I need a formula that will extract the part of a post code I want. I would
like to extract the first letter or letters from a postcode to use in a
VLOOKUP. My problem is that there can be one letter or two letters at the
start of the postcode.
So if the postcode is B1 1AZ the formula result would be B and if the
formula is BA1 1AZ the result would be BA.

Thanks




  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
PH NEWS
 
Posts: n/a
Default Postcodes

I have figured out how to have the two in the same cell

=IF(VALUE(IF(ISERROR((VALUE(MID(D12,2,1)))),"10",( VALUE(MID(D12,2,1)))))=10,
LEFT(D12,2),LEFT(D12,1))



"PH NEWS" wrote in message
...
Hi,

I need a formula that will extract the part of a post code I want. I would
like to extract the first letter or letters from a postcode to use in a
VLOOKUP. My problem is that there can be one letter or two letters at the
start of the postcode.
So if the postcode is B1 1AZ the formula result would be B and if the
formula is BA1 1AZ the result would be BA.

Thanks




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Display a UK Map from excel list Postcodes Tonto Excel Discussion (Misc queries) 1 May 4th 06 07:54 PM
How do I list postcodes in order in Excel? jillysillybilly Excel Discussion (Misc queries) 10 January 8th 06 06:14 PM
Number count - postcodes and need to count the numbers of tim... Mark - Aust Excel Discussion (Misc queries) 1 October 24th 05 10:00 AM
Sorting by PostCode Steve Excel Discussion (Misc queries) 6 March 22nd 05 12:50 PM
Can I use autofilter to hide random postcodes? [email protected] Excel Worksheet Functions 4 December 4th 04 10:57 PM


All times are GMT +1. The time now is 12:09 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"