高手请问,如何用宏来大量合并单元格?
发布网友
发布时间:2022-08-20 06:27
我来回答
共1个回答
热心网友
时间:2023-11-01 11:25
合并的宏是:
Range("E11:F11").Select
With Selection
.HorizontalAlignment = xlGeneral
.VerticalAlignment = xlCenter
.WrapText = False
.Orientation = 0
.AddIndent = False
.IndentLevel = 0
.ShrinkToFit = False
.ReadingOrder = xlContext
.MergeCells = True
End With
只有相邻的单元格才能合并。
用一个循环找到相同户籍号的单元格,再用上面的宏就可以自动合并了