code to show the predecessor number, name, and due date in a report field | Community
Skip to main content
Level 2
January 17, 2025
Question

code to show the predecessor number, name, and due date in a report field

  • January 17, 2025
  • 1 reply
  • 504 views

Has anyone written code to show the predecessor number, name, and due date in a report field? (Not just the pop-up from hovering over the predecessor number.)

1 reply

RandyRoberts
Community Advisor
Community Advisor
January 21, 2025

 

 

displayname=Predecessor(s) listdelimiter=<br> listmethod=nested(task.predecessors).lists textmode=true type=iterate valueexpression=CONCAT("(Task#: ",{predecessor}.{taskNumber},") - ",{predecessor}.{name}," - ",{predecessor}.{assignedTo}.{name}," - ",{predecessor}.{plannedCompletionDate}) valueformat=HTML

 

I usually accompany this with a "Successor" column and a handoff date column.

 

TIP: if this solves your problem, I invite you to consider marking it as a Correct Answer to help others who might also find it of use.
If you like my content, please take a moment to view and vote on my Idea Requests: https://tinyurl.com/mysocalledideas

 

Community Advisor
February 4, 2025

Hi @randyroberts, this code just what I was looking for! Can you use it on a tasks report? It's not returning any data for me 😞