我想知道是否有办法计算excel评论中的字符?我必须把这些评论带到另一个应用程序中,并想知道我是否可以获得一个字符数,因为应用程序只接受150个字符,我知道一些评论有更多,但我不想坐在那里并计算这些评论。
答案 0 :(得分:2)
你不能通过公式来做,但可以用VBA
Dim com As Comment
Dim ws As Worksheet
Set ws = Sheets(1)
For Each com In ws.Comments
MsgBox Len(com.Text)
Next com
你可以添加一个模块并创建一个函数
Function CountCommentCharacters(r As Range) As Integer
CountCommentCharacters = Len(r.Comment.Text)
End Function