View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Roger Govier Roger Govier is offline
external usenet poster
 
Posts: 2,886
Default Convert month number to string

=TEXT(A1&"-1","mmm")
Neat solution!! but I think you meant to reference cell A2 not A1.

Also, dependant upon your regional settings, (in the UK for example) you
would need to use
=TEXT("1-"&A2,"mmm")

--
Regards

Roger Govier


"Teethless mama" wrote in
message ...
Try this:

=TEXT(A1&"-1","mmm")



"Graham" wrote:

I have a master sheet in which date is stored in columns by month.
Row 1 has
the year and row 2 has the month number (1 to 12).

There are presentation sheets that reference subsets of the master
data and
on those sheets I would like to display a 3 char string for the month
e.g.
'JAN' for month 1.

Any suggestions, please?
--
Graham