我需要通过第一个分隔符(从右到左阅读)拆分一个单元格,以便我可以将该值放入另一个单元格中。
例如,我在单元格 A1 中的数据可能如下所示:
"something - more something - a lot more of something - (this is the text I need)"
Run Code Online (Sandbox Code Playgroud)
单元格 B1 需要值“(这是我需要的文本)”
到目前为止,我所拥有的是:
=RIGHT(a1,LEN(FIND(RIGHT("-"),a1)))
Run Code Online (Sandbox Code Playgroud)
但这似乎只返回最后一个字符:“)”。