Excel 中的条件格式 - 4 列

发布于 2024-12-22 02:06:54 字数 457 浏览 2 评论 0原文

好的,这可能非常简单,但远远超出了我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无名指的心愿 2024-12-29 02:06:54

以下应该可以解决问题:

=(A1=MAX($A1:$D1))

$A1:$D1 范围内使用美元符号将导致它始终覆盖相同的列(从 A 到 D)

The following should do the trick:

=(A1=MAX($A1:$D1))

Using dollar signs in the range $A1:$D1 will cause it to always cover the same columns (from A to D)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文