Entering Dates Quickly
Tuesday, January 31st, 2006Here is a useful formula - a long with a variant if you need to
enter dates quickly without the delimiters between the days, months and years.
In the example below, we enter our shorthand dates in column B. This column is formatted as Text so that any leading zeroes are not discarded by OOo Calc as it interprets the numbers entered as an integer.
Column C is formatted as a Date and the formula entered in C2 is
=DATEVALUE(TEXT(CONCATENATE(LEFT(B2;2);”/”;MID(B2;3;2);”/”;RIGHT(B2;2));”MM/DD/YY”))
Instead of using the CONCATENATE function, you can use the corresponding “&” operator.
=DATEVALUE(TEXT(LEFT(B3;2)&”/”&MID(B3;3;2)&”/”&RIGHT(B3;2);”MM/DD/YY”))









