Expand my Community achievements bar.

The next phase for Workfront Community ideas is coming soon. Learn all about it in our blog!

Adding Resolving Project Task Information to an Issue (Request) Report

Avatar

Level 2
Hello All, I have an issue report and I am trying to reference the planned completion date of a specific task in one of the resolving projects. I'm not even sure this is possible, but hoping it is. I'm using iterate with an If statement. Any ideas? displayname=Active Project Phase(s) listdelimiter=
listmethod=nested(tasks).lists textmode=true type=iterate valueexpression=IF({resolveProject}.{tasks}.{name}="Discover Phase",{plannedCompletionDate}) valueformat=HTML Jeremiah Boyle BetterCloud
Topics

Topics help categorize Community content and increase your ability to discover relevant content.

2 Replies

Avatar

Employee Advisor
@Jeremiah Boyle Instead of placing the resolveProject in your valueexpression, you would want to apply that to your list method. Then, since the system will be looking at the resolve project task list, you can remove task from the valueexpression. displayname=Active Project Phase(s) listdelimiter=
listmethod=nested(resolveProject.tasks).lists textmode=true type=iterate valueexpression=IF({name}="Discover Phase",{plannedCompletionDate}) valueformat=HTML Nichole Vargas Customer Programs Specialist, Workfront

Avatar

Level 2
This is great! Thank you, Nichole. Jeremiah Boyle BetterCloud