I'm trying to have a column at my Program level and Project level to show me what task we are on, who it's assigned to and the due date. I started with the text mode below but it's not working for me. Anyone ideas what I have wrong here?
displayname=Current Task
listdelimiter=<div> listmethod=nested(tasks).lists textmode=true type=iterate usewidths=true
valueexpression=IF({numberOfChildren}=0,IF({canStart},IF(CONTAINS("CPL",{status}),"",CONCAT({name}," - ",{assignedTo}.{name}," - ",{plannedCompletionDate}))))
valueformat=HTML width=400
Solved! Go to Solution.
Views
Replies
Total Likes
That's it - Thank you!!!
Views
Replies
Total Likes
Hi @Kim_Hodnett,
I have refactored this a bit, added new lines, removed some extra spaces and it works normally/as intended I would say. Could you please try this
displayname=Current Task
listdelimiter=<div>
listmethod=nested(tasks).lists
type=iterate
usewidths=true
valueexpression=IF({numberOfChildren}=0,IF({canStart},IF(CONTAINS("CPL",{status}),"",CONCAT({name}," - ",{assignedTo}.{name}," - ",{plannedCompletionDate}))))
valueformat=HTML
width=400
Please let me know if it works now.
Best regards,
Ivan
That's it - Thank you!!!
Views
Replies
Total Likes
Hi @Kim_Hodnett ,
Could you also mark this as correct, so its helps community with finding the solution in the future. Thank you in advance, appreciate it.
Best regards,
Ivan
Views
Likes
Replies