怎么放大批注字体excel,批注,放大,字体
2025-01-16 12:57:40
1.excel批注中字体整体修改大小
alt + fll进入VBA编辑器。
双击thisworkbook, 在右侧的代码区域输入代码:
Sub CommentFont()
Dim Cmt As Comment
For Each Cmt In ActiveSheet.Comments
With Cmt.Shape.TextFrame.Characters.Font
.Bold = msoFalse
.Size = 9
.ColorIndex = 3
End With
Next
End Sub
修改代码里面的size=9部分的9为你满意的字号,然后点击F5运行即可