How to check if the Dictionary contains a given value?
1 answer
You can use ContainsValue
:
If myDictionary.ContainsValue("Two") Then
debug.print("Exists")
End If
That's all you need.
+12
source to share