Excel 中的条件格式 - 4 列
好的,这可能非常简单,但远远超出了我在 Excel 中的正常职责。
我有四列,每行都有不同的值。例如:
| A | B | C | D |
--+-----+-----+-----+-----+-
1 | 1 | 3 | 4 | 5 |
--+-----+-----+-----+-----+-
2 | 3 | 1 | 4 | 5 |
--+-----+-----+-----+-----+-
3 | 2 | 2 | 3 | 1 |
--+-----+-----+-----+-----+-
4 | 3 | 2 | 7 | 1 |
--+-----+-----+-----+-----+-
我想让每行中最大的数字(示例中为 5、5、3、7)突出显示某种颜色。我在弄清楚如何调整公式以包含文档的整个范围方面遇到了最大的困难。提前致谢。
Okay, this is probably pretty simple but far beyond my normal duties in Excel.
I have four columns, with varying values in each row. For example:
| A | B | C | D |
--+-----+-----+-----+-----+-
1 | 1 | 3 | 4 | 5 |
--+-----+-----+-----+-----+-
2 | 3 | 1 | 4 | 5 |
--+-----+-----+-----+-----+-
3 | 2 | 2 | 3 | 1 |
--+-----+-----+-----+-----+-
4 | 3 | 2 | 7 | 1 |
--+-----+-----+-----+-----+-
I would like to have the highest number in each row (5, 5, 3, 7 in the example) highlighted a certain color. I'm having the most trouble figuring out how to adjust the formula to include the entire range of the document. Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下应该可以解决问题:
在
$A1:$D1
范围内使用美元符号将导致它始终覆盖相同的列(从 A 到 D)The following should do the trick:
Using dollar signs in the range
$A1:$D1
will cause it to always cover the same columns (from A to D)