alld(condition)
Description
Just like the allc() function but it works on depends items.
Returns true if all depends items meet the condition.
Example
alld(has_contain_date())
checks the item text for each depends item and if they all contain a valid date returns true
alld(substr(tv(),1,2)=="M ")
Will return a true value only if the item text for all depends items start with "M "
TV() returns the item text of the depends item to the substr() function
Related Rules
allc(),
allp(),
anyc(),
anycf(),
anyd(),
anyf(),
anyp()
Rules