Hi seantera,
Sorry, I didn't copy the macro heading, and the broken line could cause
a problem, so try...
Sub ChangeCommentFont()
Dim i As Long
For i = 1 To Sheet1.Comments.Count
Sheet1.Comments(i).Shape.TextFrame.Characters.Font.Name _
= "Times Roman"
Next
End Sub
Ken Johnson