Post Codes

  • Thread starter Thread starter Bruce
  • Start date Start date
B

Bruce

I have a list of post codes (UK) that I have trimmed down to the first part
of the code e.g. LW309TF down to LW30. No I need to remove the digits and
leave just the alpha details i.e. LW.How can I achieve this?

Thanks Bruce
 
Left([NameOfPostcodeField],InStr([NameOfPostcodeField],CStr(Val([NameOfPostc
odeField]))-1)
 
Back
Top