Sorry, I misunderstood your request. This UDF will display comments in source
sheet (Sheet1) as cell contents in destination sheet (Sheet2):
Function CommText(sourcesheet, cellrow, cellcol)
If Worksheets(sourcesheet).Cells(cellrow, cellcol).Comment Is Nothing Then
CommText = ""
Else
CommText = Worksheets(sourcesheet).Cells(cellrow,
cellcol).Comment.Text
End If
End Function
Enter in A1 in Sheet2
=CommText("Sheet1",ROW(),COLUMN())
and fill it right and down as required!
Regards,
Stefi
„shanelaura†ezt Ãrta: