在具有相同值的单元格周围创建边框
我有一张像下面这样的桌子。如何让 Excel 在第四列中具有相同数字的组周围放置边框,以便组周围有边框。我认为条件格式可以做到这一点,但我不知道如何做到。所以我认为唯一的选择是宏。有人可以帮忙吗?
1 64436 549419 1
2 64437 549420 1
3 64438 549421 1
4 64439 549422 1
5 64440 549423 1
6 64441 549424 1
7 64442 549425 1
8 64443 549426 1
9 64444 549427 1
10 64445 549428 1
11 64446 549429 1
12 64447 549430 1
13 64448 549431 2
14 64449 549432 2
15 64450 549433 2
16 64451 549434 2
17 64452 549435 2
18 64453 549436 2
19 64454 549437 2
20 64455 549438 2
21 64456 549439 2
22 64457 549440 4
23 64458 549441 4
24 64459 549442 5
25 64460 549443 5
26 64461 549444 5
27 64462 549445 5
28 64463 549446 5
29 64464 549447 5
30 64465 549448 6
31 64466 549449 6
32 64467 549450 6
33 64468 549451 6
34 64469 549452 6
35 64470 549453 6
36 64471 549454 6
37 64472 549455 9
38 64473 549456 9
39 64474 549457 9
I have a table like the one below. How can I get Excel to put borders around groups with the same number in the 4th column so that there is a border around the groups. I was thinking conditional formatting could do it but I can't think how. So I think the only option is a macro. Could anybody help?
1 64436 549419 1
2 64437 549420 1
3 64438 549421 1
4 64439 549422 1
5 64440 549423 1
6 64441 549424 1
7 64442 549425 1
8 64443 549426 1
9 64444 549427 1
10 64445 549428 1
11 64446 549429 1
12 64447 549430 1
13 64448 549431 2
14 64449 549432 2
15 64450 549433 2
16 64451 549434 2
17 64452 549435 2
18 64453 549436 2
19 64454 549437 2
20 64455 549438 2
21 64456 549439 2
22 64457 549440 4
23 64458 549441 4
24 64459 549442 5
25 64460 549443 5
26 64461 549444 5
27 64462 549445 5
28 64463 549446 5
29 64464 549447 5
30 64465 549448 6
31 64466 549449 6
32 64467 549450 6
33 64468 549451 6
34 64469 549452 6
35 64470 549453 6
36 64471 549454 6
37 64472 549455 9
38 64473 549456 9
39 64474 549457 9
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我看不到一个简单的非宏解决方案来满足您的需求,但 PowerUser 的解决方案似乎还不错。
这是一个基于宏的解决方案,它将在最后一列中具有相同数字的行周围放置边框。我假设您的数据位于 A:D 列中。
要使用此宏,只需单击列表中的任何单元格,然后触发该宏。
作为快速指南:
AddBorders
是主要宏,它只是循环遍历最后一列中的所有单元格,并确定何时边框合适AddBorder
是一个简短的例程,它添加边界。作为奖励,
AddBorder
会从 Excel 的 56 种调色板中选择随机颜色,以便每个边框都有不同的颜色,以便于查看I cannot see a simple non-macro solution to exactly what you need but the solution from PowerUser seems okay.
Here is a macro based solution that will put a border around rows that have the same digit in the final column. I will assume your data are in columns A:D.
To use this macro just click any cell within your list and then fire the macro.
As a quick guide:
AddBorders
is the main macro that simply loops through all the cells in the final column and works out when a border is appropriateAddBorder
is a short routine that adds the border.As a bonus,
AddBorder
selects a random color from Excel's 56 color palette so that each of your borders are different colors to make easier viewing我想出了这个解决方案,它在我的 Excel 2010 上工作得很奇怪:/
我无法在 2003 年测试它,所以请告诉我是否可以。
I came out with this solution, it works strange on my Excel 2010 :/
I cannot test it on 2003, so please let me know if thats fine.
你只是想让它更容易被人眼阅读吗?如果是这样,我建议交替背景颜色。例如,每当第四列中的数字发生变化时,背景颜色就会从白色变为蓝色,反之亦然。我一直这样做:
添加一个附加列 E。由于您的参考列是 D,因此输入:
=MOD(IF(D5>>D4,E4+1,E4),2)
(即,如果该行的列 D 与最后一行的 D 不同,则从 0 更改为 1 或 1 更改为 0)
隐藏该列,以便最终用户看不到它。
制作 2 个条件公式。如果您的隐藏值为 0,第一个会将行颜色更改为白色。如果您的隐藏值为 1,第二个会将其更改为蓝色。
无宏。没有 VBA 编码。只有 1 个隐藏列和一些条件公式。即使您的 D 列跳过数字,颜色仍应正确交替:)
(我每天在 XL 2003 上使用这个。我希望它在 2007 年也能工作)
Are you just trying to make it more readable to human eyes? If so, I recommend alternating background colors. For example, every time, the number in that 4th column changes, the background color would change from white to blue and vice-versa. I do this all the time:
Make an additional column E. Since your reference column is D, enter:
=MOD(IF(D5<>D4,E4+1,E4),2)
(i.e. if this row's column D is different from the last row's D, then change from either 0 to 1 or 1 to 0)
Hide the column so that the end-user doesn't see it.
Make 2 conditional formulas. The first will change the row color to white if your hidden value is 0. The second will change it to blue if your hidden value is 1.
No macros. No VBA coding. Just 1 hidden column and a few conditional formulas. And the colors should still alternate properly even though your column D is skipping numbers :)
(I use this daily on XL 2003. I hope it works on 2007)
您需要使用相对引用。
将所有“$C”替换为“${Your Column}”。请注意,这不会在单个项目周围放置任何边框,因为您在选择中不能再有三个条件格式条件。
You need to use relative referencing.
Replace all '$C' with '${Your Column}'. Note that this will not place any borders around single items since you can have no more the three conditional formatting conditions in a selection.