Can you create a view with both task data and custom from data in the columns? | Community
Skip to main content
November 12, 2020
Question

Can you create a view with both task data and custom from data in the columns?

  • November 12, 2020
  • 3 replies
  • 881 views

I am looking to be able to see both project custom form data, along with specific task data from the same project displaying in the columns of a view. The output intent is that I can view and entire portfolio of projects while seeing both key project specific custom from dates alongside the planned completion dates of milestone tasks within the projects.

I am not asking for a task report as I want these data pulls to shows a columns in a view displaying all projects in a portfolio with their data pulls of tasks and custom form info

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

3 replies

imgrund
Adobe Employee
Adobe Employee
November 13, 2020

Hi - it looks like you want to use a task collection in a project report. Here are some slides from a Leap presentation I did in 2018. Hope this helps you get close to what you are looking for.

November 13, 2020

I think this is getting close.

I've not tried the collections feature. What I'd like the column to display is the planned completion date of a task that is part of the project template. I think I can do this, but I am not entirely sure what the code would look like. For the sake of understanding. The task in the template is called "DR1 Presentation" we also have "DR2 Presentation" and "DR3 Presentation".

I'd like the columns to show the planned competition date for those 3 tasks specifically. (3 columns total DR1, DR2 and DR3).

Do you know how I would alter the code you have listed below to show that?

This column utilizes the collections feature in Workfront with an IF statement to filter the returned results:

1.Click into the blank column and paste

displayname=Tasks For The Next Week

listdelimiter=

listmethod=nested(tasks).lists

textmode=true

type=iterate

valueexpression=IF({numberOfChildren}=0,IF({plannedCompletionDate}>$$TODAY+1d && {plannedCompletionDate}<$$TODAY+1w,IF(ISBLANK({actualCompletionDate}),CONCAT({name}," (",{plannedCompletionDate},") // "))))

valueformat=HTML

November 13, 2020

@Miranda Davis (Customer)‚

You can try something along these lines..... from here you can do all kinds of mods... ie.... you can check the status, and if complete you can report the actual date instead. From there you can concatenate a status or symbol to indicate status etc......

displayname=DR1 Presentation

listdelimiter=&zwj;

listmethod=nested(tasks).lists

textmode=true

type=iterate

valueexpression=IF(CONTAINS("DR1 Presentation",{name}),{plannedCompletionDate})

valueformat=html

November 13, 2020

THANK YOU!

This is exactly what I need!!!

November 13, 2020

@Miranda Davis‚

My pleasure. From there you can check status and report based on that if you like.

Here's an example if the status is complete, report a green check along with the actual completion date, otherwise just report the planned date. Same can be used for projected completion date etc.... or you can concatenate the actual status, or just report a check without a date. The trick is that you have to be very consistent with your Task Names.

valueexpression=IF(CONTAINS("DR1 Presentation",{name})&&{status}="CPL",CONCAT("✔️ ",{actualCompletionDate}),IF(CONTAINS("DR1 Presentation",{name}),{plannedCompletionDate}))