突出显示行中特定单元格的值与前一行的值不同的单元格

发布于 2024-10-20 10:58:40 字数 181 浏览 2 评论 0原文

我想应用一些条件格式,将一行的每个单元格与前一行的单元格进行比较。如果不同,则该行会突出显示。

所需输出的示例

我正在使用 Excel 2007。这可能吗?如果是这样,有人可以向我提供将其应用于整个数据表的步骤吗?

I'd like to apply some conditional formatting where each cell of a row is compared to the cell in the previous row. If it differs then the row is highlighted.

Example of desired output

I'm using Excel 2007. Is this even possible? If so could someone provide me with the steps to apply this to an entire table of data?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

一身骄傲 2024-10-27 10:58:40

是的,这是可能的。这在以前版本的 Excel 中也是可能的。

条件很简单。

选择数据,从第二行数据开始(从表头算起第三行),弹出条件格式化对话框,选择“公式”,输入=A3<>A2 , =A3<>OFFSET(A3,-1,0),其中 A3 是所选内容的左上角单元格。
请注意没有美元符号 - Excel 会自动建议它们,因此请相应删除。

由于引用不是绝对的,因此格式将正确应用于整个表格。

Yes, it is possible. It was possible in previous versions of Excel, too.

The condition is very simple.

Select the data, starting from the second row of data (the third row counting from the header), bring up the condition formatting dialog, select "Formula" and enter =A3<>A2, =A3<>OFFSET(A3,-1,0) where A3 is the top-left cell of the selection.
Note the absence of dollar signs - Excel will automatically suggest them, so delete accordingly.

Because the reference is not absolute, the formatting will properly apply to the whole table.

陪你搞怪i 2024-10-27 10:58:40

您可以使其更加通用,如下所示:

=INDIRECT(ADDRESS(ROW(), COLUMN()))<>INDIRECT(ADDRESS(ROW()-1, COLUMN()))

其工作原理如下:

  • =ADDRESS(ROW(), COLUMN()) 指当前单元格(即要格式化的单元格)。
  • 类似地,=ADDRESS(ROW()-1, COLUMN()) 指的是当前单元格上方的单元格。然后我所做的就是比较两者。

You can make it even more versatile, like this:

=INDIRECT(ADDRESS(ROW(), COLUMN()))<>INDIRECT(ADDRESS(ROW()-1, COLUMN()))

Here's how it works:

  • =ADDRESS(ROW(), COLUMN()) refers to the current cell (i.e. the one to be formatted).
  • Similarly, =ADDRESS(ROW()-1, COLUMN()) refers to the cell above the current cell. Then all I do is compare the two.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文