Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有从 VBA 设置工作表字体大小和行高的便捷方法?
这应该有效:
Sub SetFormat() With ActiveSheet .Cells.Font.Size = "12" .Cells.RowHeight = 25.5 End With End Sub