Count Comments

  • Thread starter Mr Anthony Griffiths
  • Start date
M

Mr Anthony Griffiths

Is there a way to count how many cells in a row have comments in them ?

Anthony G
 
R

Ron de Bruin

Hi Anthony

Example for row 1 on the activesheet

On Error Resume Next
MsgBox Rows(1).SpecialCells(xlCellTypeComments).Count
On Error GoTo 0
 
Top