SOLVED

Alpha-Numeric serial numbers to dates

Copper Contributor

Hello,

 

I am looking to make a formula to convert a serial number, for example

AC21BDA123

into a date (month and year). 

The above serial number would be year as the 1st and 2nd number (2021).

The letter after the year would be the month (A = Jan, B = Feb, etc.)

Is it possible to use a single formula to convert these? If it could be shown how to create such a formula it would be very helpful.

 

Thanks for the help.

4 Replies
best response confirmed by MichaelFoster (Copper Contributor)
Solution

@MichaelFoster 

With a serial number in A1:

 

=DATE(MID(A1,3,2)+2000,CODE(MID(A1,5,1))-64,1)

This works, thank you! I see how we get the year by using the two numbers with the date function, but how do you use the code function to get the month?

@MichaelFoster 

CODE returns the ASCII/ANSI code of a character.

The ASCII code of "A" is 65, that of "B" is 66 etc.

If we subtract 64 from that, we get the month number 1, 2, etc.

That's a creative way I didn't think about when trying to get the month to work, thank you for showing me!
1 best response

Accepted Solutions
best response confirmed by MichaelFoster (Copper Contributor)
Solution

@MichaelFoster 

With a serial number in A1:

 

=DATE(MID(A1,3,2)+2000,CODE(MID(A1,5,1))-64,1)

View solution in original post