This allows all cells to be formatted in the same way.
But it still will not allow the date format function to work to change the format.
I am seeking to be able to change the format through the date format function.
Wayne Taylor (webtubbs)
They are likely entered as Text format. To change to something that can be identified as a date, enter '1' in a blank cell. Copy that cell, select the date cells and Paste Special, with Multiply as the operation.
Select all the dataes then PasteSpecial. Scroll don and select PasteSpecial then Add
Arana (G.P.)
you are having problem because of regional settings, in the sheet you gave us, what is the correct date for a16? is it dec 10 or oct 12?
if it is OCt 12 then use this in the next cell (b16) to convert it
=IFERROR(DATEVALUE(TEXT(A16,"MM/dd/YYYY")),DATEVALUE(MID(A16,4,2) & "-" & LEFT(A16,2)&"-"&RIGHT(A16,4)))
Open in new window