Date in English format to French
florew
Posted messages
18
Status
Membre
-
FBC -
FBC -
Hello,
I can't seem to change the format of a date from English to French display in Excel 2010.
A1 = 01/08/2010 and Excel interprets it as August 1, 2008 when it is actually January 8, 2008. I have many like this; how could I indicate the French format?
I've tried displaying it in custom mode with #-409, also attempted to change the date format in Windows 7, but I can't manage to do it. Does anyone have the solution?
Thanks
Florew
I can't seem to change the format of a date from English to French display in Excel 2010.
A1 = 01/08/2010 and Excel interprets it as August 1, 2008 when it is actually January 8, 2008. I have many like this; how could I indicate the French format?
I've tried displaying it in custom mode with #-409, also attempted to change the date format in Windows 7, but I can't manage to do it. Does anyone have the solution?
Thanks
Florew
6 réponses
Re,
to summarize the possibilities there are also
=(MONTH(A1)"/"DAY(A1)"/"YEAR(A1))*1
=IF(ISTEXT(A1);DATE(RIGHT(A1;LEN(A1)-FIND("/";A1;FIND("/";A1)+1));LEFT(A1;FIND("/";A1)-1);MID(A1;FIND("/";A1)+1;FIND("/";A1;FIND("/";A1)+1)-FIND("/";A1)-1));DATE(YEAR(A1);DAY(A1);MONTH(A1)))
by searching we should find other possibilities
--
A+
Mike-31
A period of failure is a perfect time to plant the seeds of knowledge.
to summarize the possibilities there are also
=(MONTH(A1)"/"DAY(A1)"/"YEAR(A1))*1
=IF(ISTEXT(A1);DATE(RIGHT(A1;LEN(A1)-FIND("/";A1;FIND("/";A1)+1));LEFT(A1;FIND("/";A1)-1);MID(A1;FIND("/";A1)+1;FIND("/";A1;FIND("/";A1)+1)-FIND("/";A1)-1));DATE(YEAR(A1);DAY(A1);MONTH(A1)))
by searching we should find other possibilities
--
A+
Mike-31
A period of failure is a perfect time to plant the seeds of knowledge.
FBC
It would have taken me at least a day to compose the formula. So THANK YOU!