質問:

セルの解説に応じて条件付き書式を作成するにはどうすればよいですか?

回答:

条件付き書式の標準モジュール式に次のコードを挿入します。= 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