Date (dd-mm-yy) > need to split into 3 columns (ie dd mm yy)

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi there
I have a column of dates (dd-mm-yy) that I want to split into 3 seperate columns ... (ie. column A = dd , column B = mm and column C = yy)
Does anyone know how I can segment the date into 3 different columns
Thanks very much for anyone's help....
Ti
 
Tim Elhatton said:
Hi there,
I have a column of dates (dd-mm-yy) that I want to split into 3 seperate
columns ... (ie. column A = dd , column B = mm and column C = yy).
 
With the date in A1
In B1 =TEXT(A1,"dd")
In C1 =TEXT(A1,"mm")
In D1 =TEXT(A1,"yy")
Tim Elhatton said:
Hi there,
I have a column of dates (dd-mm-yy) that I want to split into 3 seperate
columns ... (ie. column A = dd , column B = mm and column C = yy).
 
Back
Top