Link to home
Start Free TrialLog in
Avatar of John Darby
John DarbyFlag for United States of America

asked on

Excel - merge column values

Greetings, I have 3 columns (b, c, d) with Year, Month, Day. I would like to merge the values of the 1st 3 cells/columns into the 4th column
eg. in this order for line 2 in column E: "C2/D2/B2"

Thanks!
JohnD
ASKER CERTIFIED SOLUTION
Avatar of Shums Faruk
Shums Faruk
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of John Darby

ASKER

The 2nd one is just the trick! Thank you!
If you want the resultant date to be usable, and assuming the year is in YYYY format, the month in MM format and day in DD format, use this...

=DATE(B2,C2,D2)

...and then format as date in MM/DD/YY format.

If the Year is only in YY format, you'll need to do this assuming no years prior to 2000....

=DATE(2000+B2,C2,D2)