Split text into different columns from the right

后端 未结 2 746
北恋
北恋 2021-01-17 02:11

I have a string of alpha-numeric text that is in one cell of Excel, using v2016. the text is similar to:

ECN 6120 012 MMR 12195 201481

I have u

2条回答
  •  梦毁少年i
    2021-01-17 02:25

    With data in A1, in B1 enter:

    =TRIM(MID(SUBSTITUTE($A1," ",REPT(" ",999)),COLUMNS($A:A)*999-998,999))
    

    and copy across:

提交回复
热议问题