A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
=DATE(RIGHT(A2, 2) + 100, MID(A2, 4, 2), LEFT(A2, 2))
In this formula, the number 100 has been added, which gives the difference in years between 1930 and 2030.
Your formula returns nonsense:
A6: =A5
A7: =A6
Same number format in A5:A7 as in A1:A3 shown in my last post.
B1: =DATE(RIGHT(A1, 2) + 100, MID(A1, 4, 2), LEFT(A1, 2))
drag down
Same number format as in column A
C1: =B1
Numberformat in column C: General
The question was how to convert the date 15-Mar-1930 to 15-Mar-2030, IMHO simply add 100 years:
A9: =A7+36525
or
A9: =DATE(YEAR(A7)+100,MONTH(A7),DAY(A7))
Andreas.