Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道我如何拆分托管在一个单元格中的 IF 语句?示例 一个单元格包含:IF Condition1 THEN Action1 所以我想:第一个单元格:IF Condition1 第二个单元格:THEN Action1
对于 B4 中的 IF...THEN... 条件:
在 C4 中:
=LEFT(B4,LEN(B4)-SEARCH("THEN",B4)-1)
在 D4 中:
=MID(B4,SEARCH("THEN",B4),500)