开发者

Rearranging text data in excel

开发者 https://www.devze.com 2023-01-31 04:43 出处:网络
I have a table like this:- ItemModel ------------------------ A10022开发者_如何转开发009 B10032006

I have a table like this:-

Item            Model
------------------------
A               10022开发者_如何转开发009
B               10032006
C               05081997

I need to rearrange/convert the Model column into this format in excel:-

Item            Model
------------------------
A               20090210
B               20060310
C               19970805

The Model column is character.


Try something like

=RIGHT(B2,4) & MID(B2,3,2)&LEFT(B2,2)

Have a look at

  • Left
  • Right
  • Mid


Make a new column with the formula:

=DATE(RIGHT(B1,4),MID(B1,3,2),LEFT(B1,2))

This will convert the string into a date (assuming the format is initial dd/mm/yyyy) Next, format the result of this formula with the custom format yyyymmdd. This will now be a proper date, formatted as year, month, day.

0

精彩评论

暂无评论...
验证码 换一张
取 消