Domanda:

Come posso creare una formattazione condizionale in base al commento di una cella?

Risposta:

Inserisci il seguente codice nel modulo standard Formula per la formattazione condizionata: = test (Data) = True Function Test (rng As Range) As Boolean

If rng.Comment.Text = "Test" Then Test = True Else Test = False End If End Function