I have a text mode that will show you all remaining incomplete tasks, but it can be cluttered when the project is still in early stages.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
Hi @ChristinaJay
a task has an attribute canStart that signals it's ready to be worked on (ie, the predecessor is complete)
On the project task pane, there is a filter "Can Start"
Is that what you mean?
Views
Replies
Total Likes
displayname=Incomplete Task(s) Ready to Work
listdelimiter=<br>•
listmethod=nested(tasks).lists
type=iterate
valueexpression=IF({numberOfChildren}>0,"",IF({canStart},IF(ISBLANK({actualCompletionDate}),CONCAT({name}," due ",{plannedCompletionDate}),""),""))
valueformat=HTML
Views
Replies
Total Likes
To expand on @Rick_MacDuffie's solution, I use this one:
displayname=Active Task
listdelimiter=<hr>
listmethod=nested(tasks).lists
styledef.case.0.comparison.icon=false
styledef.case.0.comparison.leftmethod=ID
styledef.case.0.comparison.lefttext=ID
styledef.case.0.comparison.operator=notblank
styledef.case.0.comparison.operatortype=string
styledef.case.0.comparison.righttext=
styledef.case.0.comparison.trueproperty.0.name=bgcolor
styledef.case.0.comparison.trueproperty.0.value=F5FCF7
styledef.case.0.comparison.truetext=
textmode=true
type=iterate
valueexpression=IF({numberOfChildren}=0,IF({canStart},IF({status}="CPL"||{status}="FLG","",CONCAT({taskNumber},") ",{name}," ∆ ",{assignedTo}.{name}," ∆ ","Start: ",{plannedStartDate},"…","Due: ",{plannedCompletionDate}))))
valueformat=HTML
Views
Replies
Total Likes