I think I've worked it out! Your rule is: (IsProject) AND (ProjectStatus=NotStarted) OR (ProjectStatus=Suspended) (I'm ignoring the extra brackets which you've got round the whole expression, because they don't sub-group any of the terms in it) The order of evaluation of logic terms is: NOT before AND before OR. So, that expression is evaluated as:
1. (IsProject) AND (ProjectStatus=NotStarted) OR 2. (ProjectStatus=Suspended) The first term only checks "ProjectStatus=NotStarted" for the projects (IsProject), but not for items which aren't projects (ie all the child tasks). The second term with check "ProjectStatus=Suspended" whether the item is a project or a child task - So your formatting for suspended projects is applied to both the project and all it's tasks. So, if you want the faded font to apply to all the child tasks of a NotStarted project, you need to delete or uncheck the term "IsProject". You could also create it as a new rule with just two terms, no sub-rules: ProjectStatus =NotStarted OR ProjectStatus=Suspended Please let us know if that makes sense and if it fixes the problem for you. Stéphane On Friday, 7 June 2019 07:33:59 UTC+1, MG wrote: > Hi Andrei, > > Thank you for your help. > > It works now. > > But, despite this, I am still with the doubt and ask: > > Why disabling IsProject rule result in this autoformat to have different > display? > > And, after disabling IsProject, why *NotStarted* and *Suspended* Project > statuses result also in different displays? I mean, all NotStarted projects > child tasks do not display faded, but all Suspended project child tasks > display faded. > > I will not believe the algorithm takes this into account (does not > understand what Dwight explained, regarding Not Started Projects), since > the autoformat rule is the same for NotStarted and Suspended project > statuses. > > Maybe I am wrong or missing something. > > I expect MLO Team and Alyona can clarify all of us, about this issue. > > If it is a bug? I think it is. > > BR > > M. > > > > No dia 05/06/2019, às 20:04, Andrei Bacean <[email protected] > <javascript:>> escreveu: > > > > Hi > > First suggestion: > Disable the isproject rule. > > Second suggestion: > Place the not started and suspended conditions into a group. > > Br > Andrei > > > > -- > You received this message because you are subscribed to a topic in the > Google Groups "MyLifeOrganized" group. > To unsubscribe from this topic, visit > https://groups.google.com/d/topic/mylifeorganized/29ETonYVd0Y/unsubscribe. > To unsubscribe from this group and all its topics, send an email to > [email protected] <javascript:>. > To post to this group, send email to [email protected] > <javascript:>. > Visit this group at https://groups.google.com/group/mylifeorganized. > To view this discussion on the web visit > https://groups.google.com/d/msgid/mylifeorganized/e240101a-efa8-4790-9a7d-4787eda68bfb%40googlegroups.com > . > For more options, visit https://groups.google.com/d/optout. > > > -- You received this message because you are subscribed to the Google Groups "MyLifeOrganized" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/mylifeorganized. To view this discussion on the web visit https://groups.google.com/d/msgid/mylifeorganized/e2a1761c-db7b-4ce7-8e00-7216cc299752%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
