A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Hi @Bici Alba,
Thank you for posting your question in the Microsoft Q&A forum.
I'm sorry for the inconvenience you've encountered. To better assist you, could you please provide more details such as:
- Within the company, are you the only one experiencing this issue, or is anyone else affected as well?
- What is the current version of Excel you are using? Have you tried updating to the latest version?
- Are you encountering this issue with just this one file, or does it occur with other files as well?
- With this particular file, did you use it normally before, or did this issue only arise after switching to the desktop app? Regarding your description, I would like to give you some tips that you can consider:
1/ Start Excel with safe mode
2/ Repair Excel
3/ Reinstall Excel
4/ Run the VBA code to format multiple notes On Developer tab > Visual Basic then Insert > New module
Sub FormatComments()
Dim cmt As Comment
For Each cmt In ActiveCell.Parent.Comments
With cmt
' Change font
.Shape.TextFrame.Characters.Font.Name = "Arial"
.Shape.TextFrame.Characters.Font.Size = 12
.Shape.TextFrame.Characters.Font.Bold = True
.Shape.TextFrame.Characters.Font.Color = RGB(0, 0, 0) ' Black text
End With
Next cmt
End Sub
Once again, I sincerely apologize for the unpleasant experience. I look forward to your information and if you have any questions, please feel free to reach out to me - I’ll be happy to assist you. Wishing you a wonderful day.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.