If my selected fields contain the word "xxx" or "yyy", I want to change those fields to show only those words. If a field doesn't contain either, I want to delete the info in that field.
How can this be done in excel?
If my selected fields contain the word "xxx" or "yyy", I want to change those fields to show only those words. If a field doesn't contain either, I want to delete the info in that field.
How can this be done in excel?
我想你可能想在这里使用 IF 表达式。
例如:
=IF(OR(A1="xxx",A1="yyy"),A1,"no")
如果在 A 列中,您将 xxx、yyy、zzz 分别放在各自的行中。然后在 B 列中放置此公式并将其复制到 B3 行,您应该会发现如果单元格中存在“xxx”或“yyy”,则显示该值,否则显示“否”。您可以将公式中的 no 更改为空字符串""
以获得删除内容的效果。
有关 Excel IF 表达式的进一步阅读,请参阅http://www.techonthenet.com/excel/formulas/if.php
您将用于确定单元格是否“包含”xxx 或 yyy 的工作表公式,然后执行您请求的操作将是:
=IF(NOT(ISERROR(FIND("xxx",A1))),"xxx",IF(NOT(ISERROR(FIND("yyy",A1))),"yyy",""))
但是我想指出,在这种情况下,如果单元格值为“abcyyydefxxx”,“xxx”将覆盖“yyy”......结果将是“xxx”。
如果一个单元格有可能包含您的两个字符串,我将修改公式以适应它。
现在,公式中的 A1 指向您正在检查的单元格。