split text to columns in excel

旧巷老猫 提交于 2019-12-24 18:21:09

问题


I've this table in Excel Online (onedrive site) :

 PEOPLE     FIRSTNAME   LASTNAME    AGE   ID
DETAILS     
DETAILS 
DETAILS

I would like to copy there lines of text and that it all will be filled into the appropriate rows.

for example,
Mariah Carey 30 5555
Marc Terenzi 31 7777

will fill the table by:

 PEOPLE     FIRSTNAME   LASTNAME    AGE   ID
DETAILS     Mariah      Carey       30    5555
DETAILS     Marc        Terenzi     31    7777

Assuming that each full name contains only two names so " " (a space) can be an indicator for the new word.

How can I do it?


回答1:


  1. Paste the values in the column FIRSTNAME (Yes, data will be in one cell)
  2. Select the cells with the values.
  3. Go to your Data tab.
  4. Click on Text To Columns.
  5. Choose Delimited option.
  6. Select Space as separator.
  7. Click Finish


来源:https://stackoverflow.com/questions/47554289/split-text-to-columns-in-excel

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!