View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ron Rosenfeld Ron Rosenfeld is offline
external usenet poster
 
Posts: 5,651
Default Translate a date into the month

On Wed, 22 Aug 2007 06:48:13 -0700, joostb
wrote:

In kolomn B I've dates written as follows: mrt-19, mrt-20,....apr-01 (in fx
box you see 19-03-2007). In kolomn A I would like to translate this date into
mrt, mrt,....apr etc.

could someone help me with this!

many thanks,
joost



A1: =B1

Then custom format A1 as "mmm" (or whatever your month symbol is in your
language.

Or:

A1: =TEXT(B1,"mmm") (again, replace mmm with your symbol for month in your
language)
--ron