Converting date into plain text

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Folks,
I have a small problem. Let's say I have January 22, 2004 in one cell. Now
this is set up as a Date format. Is there a way I can convert it into text
so that I can do, for example, a left() function that's going to ask for the
first 3 characters in that cell..i.e. bring back "Jan".
 
You could...

But maybe it would just be easier to use:
=text(a1,"mmm")
to return that 3 character abbreviation.

But you could use something like:
=left(text(a1,"mmmm dd, yyyy"),3)
To extract characters from the formatted value.
 

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