基于相邻单元格中现有值的条件 Excel 公式?
Conditional Excel formula based on existing value in adjacent cells?
所以我有一个 excel sheet。
我希望 ColD 包含一个公式,当左侧的 ColC 包含“@”符号时,ColD 将填充特定文本。它将排除 Row1,因为它包含 headers.
不太确定该怎么做,有可能吗?
在单元格 D2 中试试这个:
=IF(COUNT(FIND("@",C2))>0,"Certain Text","")
所以我有一个 excel sheet。 我希望 ColD 包含一个公式,当左侧的 ColC 包含“@”符号时,ColD 将填充特定文本。它将排除 Row1,因为它包含 headers.
不太确定该怎么做,有可能吗?
在单元格 D2 中试试这个:
=IF(COUNT(FIND("@",C2))>0,"Certain Text","")