I guess that I have a general problem in understanding the logical
expressions and what may be the operands of it.
Thanks,
Thomas
Let's suppose you have a task whose ID is A with some children and you
wrote :
-----
...
flags cacher
...
task A "ContainerA" {
flags cacher
..
{task FirstChildOfA "another_task" {
...
}
}
...
-----
You could write in your report:
hidetask (cacher | ischildof(A))
There may be simpler ways, but this is what I came up with.
Of course this will hide all tasks with the flag cacher, not only the
task A.
I noticed that ischildof(A) will hide the children of A as well as
their children.
PS "cacher" means "hide" in French ;)
Didier