Using cell comment in formula

ccordner

Active Member
Joined
Apr 28, 2010
Messages
355
Is it possible to use information from a cell comment in a formula? I suspect the answer is no, but I'm trying to avoid using a 'hidden' row if possible.

Thanks
Chris
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
You could have the comment export to a cell upon right click etc... and then use the information from the cell.
 
Upvote 0
like this
Code:
'In a Module
Public Function UDFGetCommentFromCell(cell As Range)
    Dim commnt As comment
    Set commnt = cell.comment
    If Not commnt Is Nothing Then
        UDFGetCommentFromCell = commnt.Text
    Else
        UDFGetCommentFromCell = "N/A"
    End If
    
End Function
 
Upvote 0

Forum statistics

Threads
1,222,040
Messages
6,163,554
Members
451,844
Latest member
ddnndd1234

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top