Separating Dates into Diff Columns

  • Thread starter Thread starter HCA
  • Start date Start date
H

HCA

How do you separate a date into seperate columns??
i.e. December 15, 1978
from one cell into three different cells, one for the month, one fo
the date, and one for the year.

thanks in advance
 
How do you separate a date into seperate columns??
i.e. December 15, 1978
from one cell into three different cells, one for the month, one for
the date, and one for the year.

thanks in advance.

Here's one way:

A1: December 15, 1978 (as an Excel date)
B1: =TEXT(A1,"yyyy")
C1: =TEXT(A1,"mmmm")
D1: =TEXT(A1,"d")


--ron
 

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