Quite often the issue is a non-breaking space - CHAR(160)
- especially from Web text sources -that CLEAN
can't remove, so I would go a step further than this and try a formula like this which replaces any non-breaking spaces with a standard one
(通常问题是一个不间断的空间 - CHAR(160)
- 特别是来自Web文本源 - CLEAN
无法删除,所以我会更进一步,尝试这样的公式,取代任何不破坏的标准空间)
=TRIM(CLEAN(SUBSTITUTE(A1,CHAR(160)," ")))
Ron de Bruin has an excellent post on tips for cleaning data here
(Ron de Bruin在这里有关于清理数据的提示)
You can also remove the CHAR(160)
directly without a workaround formula by
(您也可以直接删除CHAR(160)
而不使用解决方法)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…