标签: excel vba
是否有方便的方法从VBA设置工作表的字体大小和行高?
答案 0 :(得分:9)
这应该有效:
Sub SetFormat() With ActiveSheet .Cells.Font.Size = "12" .Cells.RowHeight = 25.5 End With End Sub