anyc(condition)


Description

similar to allc() except that it returns true if any of the child items meet the condition.

Example

anyc(substr(tv(),1,2)=="M ")
will return a true value only if the item text for any child items start with "M "
TV() returns the item text of the child item to the substr() function

Related Rules

allc(), alld(), allp(), anycf(), anyd(), anyf(), anyp()

Rules