根据 google 电子表格中相邻的 A 列值,有条件地对 B 列中的值进行颜色突出显示

Conditionally color highlight value in Column B based on adjacent Column A value in google spreadsheet

环境:Google电子表格。

我想做的事情:

每当 column2 中有 Value a 对应于 column1 中的 aValue 1 时。我希望 Value a 单元格以特定颜色突出显示。

Col1    Col2
aValue 1    Value a
aValue 2    Value b
aValue 1    Value a
aValue 1    Value c

我在这里使用什么自定义公式?

我看到了这个类似的问题 但这不是我要找的。

我对电子表格和 excel 还很陌生。感谢任何指针。

更新 :
有两组:
案例 1:Column A has entry X and corresponding Column B has value of 0 颜色 1 突出显示

Case2 Column A has entry Y and Column B has non zero value. Color2 高光

请 select ColumnB,从中清除所有 CF 规则并:格式 - 条件格式...,自定义公式为:

=and(A1="aValue 1",B1="Value a")  

突出显示您的选择并完成