Hi I am trying to find a way to say to dynamo that when I have Pipe and piping system in the same list return false and when I have pipingsystem and standard return True. Is their a way to do this?
Try List.ContainsItem. You’ll probably have to convert your elements to a string so it’s easier to compare.
List.Contains is the quickest way again.
Or List.AnyTrue 
As @Jonathan.Olesen said, a node for Any True is what you want to use in this case.



