【发布时间】:2021-12-10 04:30:55
【问题描述】:
我需要使用嵌套公式将三列(col1、col2 和 col3)输出到 col4。
逻辑如下:
- IF col3 =
YesAND IF (col1 = col2) THENSales Opportunity - IF col3 =
YesAND IF (col1 col2) THENPartner Opportunity - IF col3 =
NoTHEN""
到目前为止,我已经汇总了不同公式的组合,但似乎没有一个能产生任何有意义的结果。以下示例中的两个:
=IF(AND(AX28="Yes",F28=D28),"CLM Opportunity"),IF(AND(AX28="Yes",F28<>D28),"Partner Opportunity","")
=IF(OR(AND(AX35="Yes",F35=D35),AND(AX35="Yes",F35<>D35)),"CLM Opportunity","Partner Opportunity")
嵌套公式应该如何输出:
| Col1 | Col2 | Col3 | Col4 |
|---|---|---|---|
| Amy | Amy | Yes | Sales Op |
| Cedric | Pete | Yes | Partner Op |
| Amelia | Amelia | No |
非常感谢任何帮助!
【问题讨论】:
标签: excel