本文介绍了Excel - 在每个单元格中由`;`分割的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想将这些文本分割成excel中的单元格:
I would like to split these texts into cells in excel:
Hello-HOW-are-YOU-DOING-!
This-is-not-my-name-.
Random-People-are-looking-?
No-!
应该基本上是这样的:
此刻我我使用这个公式,这给了我第一个分割:
At the moment I am using this formula, which gives me just the first split:
=LEFT(Export!A2;FIND("-";Export!A2)-1)
任何建议我可以为每个 -
?
Any recommendations how I can do the split automatically for each -
?
感谢您的回复!
推荐答案
C1 中的 B1; 中的数据输入:
=TRIM(MID(SUBSTITUTE($B1,"-",REPT(" ",999)),COLUMNS($A:A)*999-998,999))
并复制:
这篇关于Excel - 在每个单元格中由`;`分割的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!