I have photos embedded in comments. Can I use a formula to copy these photos to another worksheet? I ran the following "getComment" add-in that I found in your archives, and it works on text.
Function getComment(incell) As String
' aceepts a cell as input and returns its comments (if any) back as a string
On Error Resume Next
getComment = incell.Comment.Text
End Function
Can this be modified to get the pictures as well? Thanks for your help!
Function getComment(incell) As String
' aceepts a cell as input and returns its comments (if any) back as a string
On Error Resume Next
getComment = incell.Comment.Text
End Function
Can this be modified to get the pictures as well? Thanks for your help!