The Right function in below formula pulls two digits from a string in G2. G2 = 282110ZOCT08
in the example the last two digits "08" represents the year 2008
=CONCATENATE(LEFT(G2,2),"-",MID(G2,8,3), "-",RIGHT(G2,2))
this results in:
28-OCT-08
I want to add 2000 to just the last segment so it reads 28-OCT-2008.
How can I do that?
in the example the last two digits "08" represents the year 2008
=CONCATENATE(LEFT(G2,2),"-",MID(G2,8,3), "-",RIGHT(G2,2))
this results in:
28-OCT-08
I want to add 2000 to just the last segment so it reads 28-OCT-2008.
How can I do that?