Greetings,
My goal is to format the font size in comment boxes, when using a macro I found here on Mr. Excel
The macro, works great, and has been adapted to my project. The code is:
I would prefer if the comment would be displayed with font size 14. Can this special format be obtained by adding some code to my existing Macro to automatically set the font size?
Mike
My goal is to format the font size in comment boxes, when using a macro I found here on Mr. Excel
The macro, works great, and has been adapted to my project. The code is:
Sub addcmt()
Dim LR As Long
LR = Range("K" & Rows.Count).End(xlUp).Row
For i = 1 To LR
Range("C" & i).NoteText Text:=Range("K" & i).Value
Next i
End Sub
I would prefer if the comment would be displayed with font size 14. Can this special format be obtained by adding some code to my existing Macro to automatically set the font size?
Mike