添加大量文本时自动调整 Excel 2010 注释框的大小

添加大量文本时自动调整 Excel 2010 注释框的大小

我正在寻找一种方法,让 Excel 注释框在添加大量文本时自动调整大小。
我尝试了 Google,得到了以下信息澳兹格但它在我的 Excel 2010 上不起作用。请帮我想个办法让它工作!谢谢!

Sub robot_comment() 

    ' robot_comment Macro 
    ' Keyboard Shortcut: Ctrl+Shift+R 

    Dim objComment As Comment 

    Set objComment = ActiveCell.AddComment 
    With objComment 
        .Visible = False 
        .Text Text:="robot" 
        .Shape.TextFrame.AutoSize = True 
    End With 
End Sub 

答案1

键盘快捷键必须在宏创建屏幕中定义,而不是在宏注释中定义。

相关内容