Hi,
there is a Calc spreadsheet with comments to cells. We need to sort the sheet based on the data in comments. For this we have to put comments into the nearby cells as values.
Found the example of Excel function:
Function getComment(incell) As String
On Error Resume Next
getComment = incell.Comment.Text
End Function
But this one returns error (no object defined)
I’ve started to write something on myself, but havn’t found method for a cell how to get out its comment.
Solution should be very simple, any ideas?
fnx )