Gruppe
Feature
Problem
Wie kann ich eine bedingte Formatierung von einem Zellkommentar in einem anderen Blatt abhängig machen?
StandardModule: basMain
Function Test(rng As Range) As Boolean
If rng.Comment.Text = "Test" Then
Test = True
Else
Test = False
End If
End Function