Suggestion — Add a formula to retrieve information about the comments in a row

It would occasionally be useful to be able to access information about comments within a formula. For instance:

IF(CountRowComments() gt 0, "Has comments!", "No comments")

Or even,

IF(GetComment(1).Contains('error'), TBD, TBD)

(Don't take the syntax too literally, but hopefully you get the idea.)

Comments