ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Date format (https://www.excelbanter.com/excel-programming/386937-date-format.html)

TD

Date format
 
Hi,

In my download file i am getting date as "cyymmdd". for e.g. April 5, 07 i
am getting 1070405.

Is there any way (custome format, macro, function) i can convert it to
yy-mm-dd format?

--
Thanks,

TD

Vergel Adriano

Date format
 
TD,

Assuming the date in "1"yymmdd format is in A1, and that you don't have to
deal with dates prior to 1/1/2000, try this formula in B1

=DATE(2000+MID(A1,2,2), MID(A1,4,2),RIGHT(A1,2))


--
Hope that helps.

Vergel Adriano


"TD" wrote:

Hi,

In my download file i am getting date as "cyymmdd". for e.g. April 5, 07 i
am getting 1070405.

Is there any way (custome format, macro, function) i can convert it to
yy-mm-dd format?

--
Thanks,

TD


ward376

Date format
 
This formula will return an actual date value for the cyymmdd format
including pre y2k. You can format it any way you like once you have
the value.

=IF(LEN(A1)=7,VALUE(CONCATENATE(MID(A1,4,2),"/",RIGHT(A1,2),"/",MID(A1,2,2))),VALUE(CONCATENATE(MID(A1,3,2), "/",RIGHT(A1,2),"/",LEFT(A1,2))))




All times are GMT +1. The time now is 09:41 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com