Excel formula where first digit in column a returns year and second digit in column a returns month -
i need first digit in column return year , second digit in column return month in column b. instance, code 3a21cy1c in column a. need return 2013 (first digit- 3) , january (second digit - a), column b read jan-2013.
=text(date(concatenate("201",left(a1,1)),find(mid(a1,2,1),"abcdefghijklmnopqrstuvwxyz",1),1),"mmm-yyyy")
Comments
Post a Comment