Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想要一个在列中搜索并找到与另一列重合的宏,然后用黄色填充它以重新识别它。
A 列 1137 行 B 列 537 行
在 A 中用黄色填充在 B 中找到的值
我认为它像
For i = 1 To i = 1137 For n = 1 To n = 592 If Cells(A, i) = Cells(L, n) Then Cells(i, A).Value = Fill End If Next Next
为什么不使用条件格式而不是宏?图片比我打字更有价值...
原始帖子没有负面结果,所以我添加了一个。
您可以使用条件格式非常轻松地做到这一点!
只需选择要突出显示数据的所有 A 列,然后:
放入以下条件格式规则:
=ISNUMBER(MATCH($A1,$B$1:$B$537,0))
将填充颜色设置为黄色
那应该这样做!