Conditional Formatting of maximum value in each row of many

天大地大妈咪最大 提交于 2019-12-10 13:23:55

问题


I have a spreadsheet with 250+ rows of data and need to find the largest value in each row. I tried to use Conditional Formatting, however I need the same rule for each row so can't highlight all the data, and trying to copy and paste it would be too cumbersome.

Is there a faster way of applying the same rule to each row separately?


回答1:


Please select he relevant columns (say A:H) and HOME > Styles - Conditional Formatting, New Rule..., Use a formula to determine which cells to format and Format values where this formula is true::

=A1=MAX($A1:$H1)

Format..., select your choice of formatting, OK, OK.

If you want the formatting to stop when there are no values in the row adjust to:

 =AND(COUNT($A1:$H1)<>0,A1=MAX($A1:$H1))


来源:https://stackoverflow.com/questions/33962042/conditional-formatting-of-maximum-value-in-each-row-of-many

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