Formula for mm/dd/yyyy extract into separate columns?

D

DDM

Sneilan, use the Text to Columns command on the Data menu. Delimited text,
with / as the separator. Afterwards, format all cells as General.

DDM
"DDM's Microsoft Office Tips and Tricks"
www.ddmcomputing.com
 
M

Mike

Sneilan,

If A1 = mm/dd/yyyy, then use the following formulas in
other cells

B1 = MONTH(A1)
C1 = DAY(A1)
D1 = YEAR(A1)

Mike
 
Top