Separating dates from one column to Month, Date, Year columns

F

frogstyle

I'm looking for a way to take a list of dates that are being cut and pasted
from an Access Database into excel and separate it so I can sort by Month,
Day, Year. The data seems to be recognized in Excel as a date because it
sorts by the the year. The format is mm/dd/yyyy. When I try to change the
format to anything else, it won't allow the change.
 
G

Gary''s Student

with something like:
08/06/2008
in A1

In cells B1 thru E1 enter:
=DATEVALUE(A1)
=YEAR(B1)
=MONTH(B1)
=DAY(B1)
 
D

Dave Peterson

If it's really a date, you could use a helper column with a formula like:

=text(a1,"mmddyyyy")
drag down as far as you need it

And then sort by this helper column.
 

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

Top