通过匹配 Excel 中另一个表中的列来突出显示一个表中的行

发布于 2024-12-10 20:33:25 字数 395 浏览 1 评论 0原文

我在 Excel 中有一个表,第一列中有一个 UserIds 列。该列的其余部分还有其他信息。

我还有一个要从第一个表中选择的 UserId 列表。

如何仅突出显示表中与列表中的 UserId 匹配的行?

例如,

User   Name    Age
 1     Tom     25
 23    Sam     18
 5     Tim     23
 15    Tod     19
 35    rob     38

和列表(我已将其复制到同一 Excel 工作表的列中):

User
15
5
1

因此,我应该能够突出显示表中用户 15、5 和 1 的行。

I have a table in excel which has a column for UserIds in the first column. It has other information in the rest of the column.

I also have a list of UserIds that I want to choose from that first table.

How can I highlight only the rows in the table that match the UserIds in the list?

Example,

Table

User   Name    Age
 1     Tom     25
 23    Sam     18
 5     Tim     23
 15    Tod     19
 35    rob     38

and the list (which i have copied into a column the same excel sheet is):

User
15
5
1

So, I should be able to highlight the rows in the Table for Users 15, 5 and 1.

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

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

发布评论

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

评论(1

过期情话 2024-12-17 20:33:25

您可以使用条件格式

  1. 我建议您将范围名称应用于查找列表以便于管理,我在下图中为 G11:G13 使用了范围名称 MyList
  2. 突出显示要显示的单元格范围格式化,从左上角的单元格开始
  3. 选择 从 Excel 菜单中选择条件格式(下面的 xl2010 屏幕截图)
  4. 使用公式确定要格式化的单元格
  5. 输入类似的公式=COUNTIF(MyList,$A2)>0

其工作原理是查看第 2 行并测试 A2 是否在 Mylist 中至少出现一次。这适用于“1”,因此 A2、B2 和 C2 是彩色的,而

A3 不在列表中,因此 A3:C3 是未着色的等等

Debra Dalgleish 的网站上有一篇关于条件格式的出色文章 此处。在 xl2003 中,可以通过“格式...条件格式”菜单访问条件格式。

在此处输入图像描述

You can use conditional formatting

  1. I suggest you apply a range name to your look up list for ease of management, I have used a range name MyList for G11:G13 in the pic below
  2. Highlight the cell range to be formatted, start your selection at the top left cell
  3. Select Conditional Formatting from the Excel menu (xl2010 screenshot below)
  4. Use a formula to determine which cells to format
  5. Enter a formula like =COUNTIF(MyList,$A2)>0

This works by looking at row 2 and testing if A2 occurs at least once in Mylist. Which is does for "1", so A2, B2 and C2 are coloured in

A3 is not in the list, so A3:C3 are uncoloured etc

There is an excellent write up of conditional formatting at Debra Dalgleish's site here. In xl2003 conditional formatting is accessed via the Format .. Conditional Formatting menu.

enter image description here

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