Combine month day and year from separate columns in to one cell

T

Thanks, JH

I have the month (October), day (3), and year (2005) contained in three
cells. I want to combine them into one cell where I can have the date as
10/3/2005. I have been unsuccessful using concatenate because I cannot
change the format of the finished project from 10/3/2005 to Oct-3,2005
etc.... I need to perform this so that I can calculate the days between the
specified date and a start date.
 
M

Marcelo

=date(year,month,day)

assuming you have on a1 2005; b1 10; c1 3

use =date(a1,b1,c1)

hth
--
regards from Brazil
Thanks in advance for your feedback.
Marcelo



"Thanks, JH" escreveu:
 
R

Ron Coderre

With
A1: (a month name....eg October)
B1: (a day of the month...eg 3
C1: (a year......eg 2005)

This formula returns a data based on those inputs:
D1: =--(B1&"-"&A1&"-"&C1)

Format D1 as a date.

In the above example, D1 returns 10/03/2005.

Is that something you can work with?
Post back if you have more questions.
--------------------------

Regards,

Ron
Microsoft MVP (Excel)
(XL2003, Win XP)
 

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