Hi! I am running into an issue with text mode rules for a project report that references nested tasks.
listmethod=nested(tasks).lists
Is it possible to apply a conditional formatting within this list method? Essentially, if there is no matching task I want the box to be greyed or have an icon. However when I apply the text mode coding that works in a traditional column, the text mode column shows the coding in plain text.
Views
Replies
Total Likes
Hi, please refer to this section (limitations of a collection view), which states that you cannot apply conditional formatting to a collection view.
Views
Replies
Total Likes
Hi All, has anyone ever attempted to add color coding to a nested task field on a project report? I want to add color to the cell in the report if the field is not blank.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
this seems quite similar to a previous question, so I'm merging your question into it.
Is there a way that if there's 'overdue tasks' on my report, that it will change the background of that cell to red? I can't seem to figure out the rule to get this to work....
displayname=Overdue Tasks
listdelimiter=<p>
listmethod=nested(tasks).lists
type=iterate
usewidths=true
valueexpression=IF({numberOfChildren}=0 && ISBLANK({actualCompletionDate}) && DATEDIFF({plannedCompletionDate}, $$TODAY)<0,CONCAT({plannedCompletionDate}," - ",{name}," - ",{assignedTo}),"")
valueformat=HTML
width=300
Views
Replies
Total Likes
I'm merging this question into a similar post, as the answer probably applies.
Views
Replies
Total Likes
Hi @KenHayes11! There are a few different ways to have a cell on a report change color, and I'm highlighting my recommendations below.
styledef.case.0.comparison.leftmethod=plannedCompletionDate
styledef.case.0.comparison.lefttext=plannedCompletionDate
styledef.case.0.comparison.operator=lt
styledef.case.0.comparison.operatortype=date
styledef.case.0.comparison.righttext=$$TODAY
styledef.case.0.comparison.icon=false
styledef.case.0.comparison.isrowcase=false
styledef.case.0.comparison.trueproperty.0.name=bgcolor
styledef.case.0.comparison.trueproperty.0.value=EAC6C9
Let me know how this goes and if you have any questions.
Best,
E
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies