Excel function to get first word from sentence in other cell

后端 未结 5 1095
孤城傲影
孤城傲影 2020-12-31 07:39

Excel: What function can I use to take the all the characters from the beginning to the first \'<\". I am trying to strip out the first word from A1 and put it into B1

5条回答
  •  既然无缘
    2020-12-31 08:09

    A1                   A2 
    Toronto is nice   =LEFT(A1,(FIND("<",A1,1)-1))
    

    Not sure if the syntax is correct but the forumla in A2 will work for you,

提交回复
热议问题