Share via

Content inside notes are transparent on excel PC application

Bici Alba 10 Reputation points
2026-02-16T13:23:42.0133333+00:00

Hi all,

my team is facing an issue with the notes in excel.

When the file is open from web (on cloud) the notes and their content is visible (pic 1)

User's image

Picture 1

But when the same file is open on excel application present on PC, the content of the notes is not visible (is transparent) (pic 2). In order to see the content you have to go inside the note select all the content and format it.

User's image

Picture 2

This is causing a lot of troubles because the file might have a lot of notes up to 1K and having to go and format one note at a time is very time consuming and no value added. Moreover, usually the team prefer to use excel on the pc (through APP) instead of web version.

Can you please help me how to solve this issue, to see the notes also on the Excel App PC version?

Thank you.

p.s.

I have tried also by changing into darker theme of excel, but nothing changes.

Microsoft 365 and Office | Excel | For business | Windows
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Henry-N 10,155 Reputation points Microsoft External Staff Moderator
    2026-02-16T15:48:00.19+00:00

    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.  


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.