A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
. . . I appreciate your kind attention, but what I'm trying to do, is count the number of notes that I add to each cell . . .
Hi,
This can only be found using VBA.
Solution Workbook Link: Count_Notes_6_Aug.xlsm
Code
Sub Count_Notes()
On Error GoTo ErrorHandle
ThisWorkbook.Worksheets("Sheet1").Range("A1").Value = ThisWorkbook.Worksheets("Sheet1").Range("E1:E10000").SpecialCells(xlCellTypeComments).Count
Exit Sub
ErrorHandle:
ThisWorkbook.Worksheets("Sheet1").Range("A1").Value = 0
End Sub
The above code:
1. Will go to worksheet Sheet1
2. In worksheet Sheet1 >> the code will evaluate range E1:E10000
3. Will write the count of notes in cell A1.
If required, please modify the bold part in the above-code to suit Your requirement.
Please respond if You require further assistance. I will try My best to be of help.
If I was able to help You, please mark My response as answer and helpful.
Thank You!