Multiple conditional formatting rules across multiple ranges?

末鹿安然 提交于 2020-01-01 09:18:43

问题


I need to do the following. Highlight a row if cell E contains a number greater than 30 AND cell L contains a number greater than 100. This rule needs to be applied to all rows. Can you help please?


回答1:


You should use CONDITIONAL FORMATTING:

1) Select all cells in the sheet (by pressing on the top left corner):

2) With selected range go to "Conditional Formatting -> New Rule.."

3) Select "Use formula..." rule type, enter formula =AND($E1>30,$L1>100). Choose desired format and press "OK"

RESULT:



来源:https://stackoverflow.com/questions/21697848/multiple-conditional-formatting-rules-across-multiple-ranges

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!