发布网友 发布时间:2022-04-21 07:51
共5个回答
热心网友 时间:2023-10-16 16:47
EXCEL中插入批注的方法:
右击单元格--插入批注;
输入批注内容后,在单元格右上角会出现红色小三角,提醒此单元格插入了批注,并且这个红三角只能显示在单元格右上角;
如果要显示出批注内容,可以点击“显示所有批注”;
批注显示后,可按住外框移到指定的地方,但红三角还是在右上角,不可移动,箭头还是指向右上角。
热心网友 时间:2023-10-16 16:48
在做好的数据单元格中点:插入-批注-加入内容-设置为显示批注
即可,字体你自己设置就行、
热心网友 时间:2023-10-16 16:48
右键——插入批注,输入内容,再右键——显示批注
热心网友 时间:2023-10-16 16:49
建一个宏,选中要加批注的单元格,然后执行这个宏。你可以自己弄个按键加入这个宏,以后一按就出来了。
Sub Add_Comment()
For Each cel In Selection
If Not cel.Comment Is Nothing Then cel.Comment.Delete
cel.AddComment
cel.Comment.Text Text:=cel.Formula
cel.Comment.Visible = True
With cel.Comment.Shape.TextFrame.Characters
With .Font
.Name = "黑体"
.FontStyle = "倾斜"
.Size = 12
.ColorIndex = 3
End With
End With
Next
End Sub
百度知道上有,我改了下显示公式、批注显示和字体,供参考。
参考资料:http://zhidao.baidu.com/question/1815232.html?si=1
热心网友 时间:2023-10-16 16:49
插入---批注。。
输入内容,设置字体。