It should be possible to evaluate more than one criteria in a formula.
An example from the wiki:
$If($And(Criteria 1,Criteria 2),True Result,False Result)
But I can't get it to work.
For example when I would want to check if a Title contains both the letter 'a' and the letter 'b', that would translate to:
$If($And($Contains(<Title>,a),$Contains(<Title>,b)),yes,no)
But that formula is not excepted. (cannot be parsed)
I suspect this might have to do with "$Contains" usually needing an "=T" or "=F", but I can't figure out how to solve it here....