Board logo

標題: Excel 注解內容 [打印本頁]

作者: calvin.ho    時間: 2010-7-16 13:26     標題: Excel 注解內容

請問有沒有方法可以搜尋取得某欄位的注解內容?

謝謝
作者: kimbal    時間: 2010-7-16 13:51

請問有沒有方法可以搜尋取得某欄位的注解內容?

謝謝
calvin.ho 發表於 2010-7-16 13:26



    這個要寫代碼了, 其中一個原因是注解上的可以是圖片.

以下代碼, getcomment(a1) 回傳a1 裡的comment

Public Function getComment(rng As Variant) As String
    Dim s As String
    s = ""
    For Each r In rng
        If Not (r.Comment Is Nothing) Then
            s = s & r.Comment.Text
        End If
    Next
    getComment = s
End Function
作者: Alyssa    時間: 2010-8-12 17:50

不好意思,在尋找功能中不是可以選擇要搜尋"公式/內容/註解"嗎?
選了註解後,應該就可以尋找註解裡的文字了
作者: kimbal    時間: 2010-8-13 00:45

對啊, 主要上看看要求,
是想查看註解位置,還是想把內容拿出到另一個位置.




歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)