欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vb 实现打开excel 单元格自适应高度

程序员文章站 2022-06-13 08:15:25
...
Sub auto_open()
'
' 宏2 宏
'
Dim g As Integer
g = 3


For i = 1 To 2

    Range("a" + CStr(i + (i - 1) * 3) + ":c" + CStr(i * 3)).Select
    Selection.UnMerge
    Selection.Rows.AutoFit
    Selection.Merge
    
Next i

    
End Sub

 

相关标签: vb