How to convert string "yyyy mmm ABC" to "yyyymm" date format using Excel formula?

268 Views Asked by At

Suppose, in Excel, I have cell value equal to

"2020 Aug ABC"

I want to convert this to 202008 date format using an excel formula because I would want to use the output value, that is, 202008 to perform some operation.

5

There are 5 best solutions below

3
On BEST ANSWER

If your data is in A1:

=LEFT(A1,4) & TEXT((DATEVALUE(MID(A1,6,3) & " 1")),"mm")
0
On

Or just using :

=TEXT(MID(A1,6,3)&LEFT(A1,4),"yyymm")

enter image description here

0
On
  • Import "2020 Aug ABC" in cell A1
  • Select A1 - Go to Data tab - Data Tools Area - Press Text to Columns
  • Select Delimited - Press Next - Select Space - Press Next
  • Press Finish
  • In D1 import =A1&RIGHT("0" & MONTH(DATEVALUE(B1&"1")),2)

Output:

enter image description here

2
On

A1 = 2020 Aug ABC

B1

=LOOKUP(9^9,LEFT(A1,4)/1%+FIND(TEXT(ROW($1:$12)*28,"mmm"),A1)^0*ROW($1:$8))
0
On

Just another approach if your data is always same pattern.

=TEXT(DATEVALUE("01-"&MID(A1,6,3)&"-"&LEFT(A1,4)),"yyyymm")