gpt4 book ai didi

excel - 你能在 Excel 中输入 "Merge Down"吗?

转载 作者:行者123 更新时间:2023-12-04 19:53:27 25 4
gpt4 key购买 nike

Excel 有一个内置的“Merge Across”功能,允许您突出显示一个范围,然后自动合并每行中的所有单元格,但不合并行本身(主要用于报告)。你能在列上做同样的事情吗?

最佳答案

Excel 本身不支持“向下合并”。我为这个函数写了一个宏:

Sub MergeDown()

Dim i As Integer, NumCols As Integer, NumRows As Integer, _
LocX As Integer, LocY As Integer

LocX = Selection.Column
LocY = Selection.Row
NumCols = Selection.Columns.Count
NumRows = Selection.Rows.Count

For i = 1 To NumCols
Range(Cells(LocY, LocX + i - 1), Cells(LocY + NumRows - 1, _
LocX + i - 1)).Select
On Error GoTo ErrorHandler
Selection.Merge
Next

Exit Sub

ErrorHandler: Exit Sub

End Sub

PS:您真的不应该合并单元格,因为这会使工作表变得非常困难。

关于excel - 你能在 Excel 中输入 "Merge Down"吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33427355/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com