通过匹配 Excel 中另一个表中的列来突出显示一个表中的行
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用条件格式
MyList
公式确定要格式化的单元格
=COUNTIF(MyList,$A2)>0
其工作原理是查看第 2 行并测试 A2 是否在 Mylist 中至少出现一次。这适用于“1”,因此 A2、B2 和 C2 是彩色的,而
A3 不在列表中,因此 A3:C3 是未着色的等等
Debra Dalgleish 的网站上有一篇关于条件格式的出色文章 此处。在 xl2003 中,可以通过“格式...条件格式”菜单访问条件格式。
You can use conditional formatting
MyList
for G11:G13 in the pic belowformula to determine which cells to format
=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.