首页 > Excel专区 > Excel函数 >

excel用自定义函数获取单元格注释

Excel函数 2022-02-14 21:56:15

我们可以用一个自定义函数来提取单元格注释。方法如下:

1.按Alt+F11,打开VBA编辑器。

2.单击菜单“插入→模块”,在右边的代码窗口中输入代码:

Function GetCommentText(rCommentCell As Range)
Dim strGotIt As String
On Error Resume Next
strGotIt = WorksheetFunction.Clean(rCommentCell.Comment.Text)
GetCommentText = strGotIt
On Error GoTo 0
End Function

3.关闭VBA编辑器。在单元格中输入公式:

=GetCommentText(B4)

将在当前单元格中返回B4单元格中的注释。


标签: 函数单元格注释自定义excel函数

office教程网 Copyright © 2016-2020 http://www.office9.cn. Some Rights Reserved. 苏ICP备20040415号-9