如果该行包含特定文本,则在两列相同的情况下逐行突出显示
If the row contains specific text highlight row by row where two columns are the same
我目前在电子表格的 M 和 N 列上使用条件格式来使用以下公式填充重复的数字值:
=COUNTIF($M1:$N1,M1)>1
我的老板问我,如果 G 列中的特定文本名称出现在同一行上,我是否只能有条件地格式化 M 和 N 列。有没有办法将它添加到我的公式中,或者这需要一些不同的东西吗?
听起来您想在条件格式公式中放置一个 vlookup。
http://www.howtogeek.com/howto/13780/using-vlookup-in-excel/
也许可以在您的公式中添加一个 AND:
=AND($G1="name",COUNTIF($M1:$N1,M1)>1)
如果我理解正确的话,您希望 countif 能够处理两种情况。你也可以使用
=countifs(data_range1,condition1,data_range2,condition2)
https://support.office.com/en-us/article/COUNTIFS-function-53c4dc8e-0e5b-4e32-93df-9ca5e7da89ed
示例:
Assume you have column A with values from 1-10. Column B has values of 1 and 2 alternating as you go down the column. If you use
=countif(A1:A10,">2")
the value equates to 8. If you use
=countifs(A1:A10,">2",B1:B10,">1")
the values equates to 4. The second equations skipped 4 numbers because both conditions are not met.
要引用单元格以确定您可以使用的条件
=countifs(data_range1,">"&G1,data_range2,condition2)
我目前在电子表格的 M 和 N 列上使用条件格式来使用以下公式填充重复的数字值:
=COUNTIF($M1:$N1,M1)>1
我的老板问我,如果 G 列中的特定文本名称出现在同一行上,我是否只能有条件地格式化 M 和 N 列。有没有办法将它添加到我的公式中,或者这需要一些不同的东西吗?
听起来您想在条件格式公式中放置一个 vlookup。
http://www.howtogeek.com/howto/13780/using-vlookup-in-excel/
也许可以在您的公式中添加一个 AND:
=AND($G1="name",COUNTIF($M1:$N1,M1)>1)
如果我理解正确的话,您希望 countif 能够处理两种情况。你也可以使用
=countifs(data_range1,condition1,data_range2,condition2)
https://support.office.com/en-us/article/COUNTIFS-function-53c4dc8e-0e5b-4e32-93df-9ca5e7da89ed
示例:
Assume you have column A with values from 1-10. Column B has values of 1 and 2 alternating as you go down the column. If you use
=countif(A1:A10,">2")
the value equates to 8. If you use
=countifs(A1:A10,">2",B1:B10,">1")
the values equates to 4. The second equations skipped 4 numbers because both conditions are not met.
要引用单元格以确定您可以使用的条件
=countifs(data_range1,">"&G1,data_range2,condition2)