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.
我需要检查公式中是否存在子字符串并将其删除。有人可以为此建议一个解决方法。目前我有一个将用户输入加入逗号分隔字符串的公式。我的要求是检查此公式是否包含“全部”,如果是,请将其删除。
请指教。
谢谢。
您可以使用替换功能。
代码:
Replace (inputString, findString, replaceString)
例子
Replace ({@YourJoinedCommaDelimitedFormula}, 'All', '')
以上将用空白字符串替换单词“All”,以便将其从列表中删除。