Month?

  • Thread starter Thread starter sungen99
  • Start date Start date
S

sungen99

How do i get the following:

A1= 11/9/05


I want B2 to = "Nov"

thanks,
Ken
 
=TEXT(A1,"mmm")

or
=A1
and give that cell a custom format of: MMM

The value in the top formula will be the string Nov. The value in the bottom
formula will be the date--just formatted to show as Nov.
 
sungen99, in B2 put =A1 and format the cell as custom mmm
--
Paul B
Always backup your data before trying something new
Please post any response to the newsgroups so others can benefit from it
Feedback on answers is always appreciated!
Using Excel 2002 & 2003
 
Great works..... sort of... this is my situation.

b21 is actually the month now i want to do a lookup with. the prob is
that its taking the whats in b1 and then formating to be mmm. i get a
#N/A from this but if i actualy enter Nov in b21 is works just fine.
But thats not what i want it to do. is there some way to just take the
data from b21 without causing the error?
 
You could even combine the formulas:

=vlookup(text(b1,"mmm"),sheet2!a:e,2,false)
(or something like that)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top