返回首页
当前位置: 主页 > Excel教程 > Excel VBA教程 >

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

时间:2012-07-14 22:43来源:Office教程学习网 www.office68.com编辑:麦田守望者

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

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单元格中的注释。

------分隔线----------------------------
标签(Tag):excel excel2007 excel2010 excel2003 excel技巧 excel教程 excel实例教程 excel2010技巧
------分隔线----------------------------
推荐内容
猜你感兴趣