Pulling Project Custom Field Information into a Task Custom Form | Community
Skip to main content
Level 2
September 19, 2025
Solved

Pulling Project Custom Field Information into a Task Custom Form

  • September 19, 2025
  • 2 replies
  • 907 views

Hi!!

 

We're looking to pull custom field dates and checkboxes from the Project Custom forms, into a Custom TASK form to avoid the team looking back and forth. We've tried calculated fields, but they are showing "N/A" and all the solutions on Experience League seem outdated. Hoping someone is able to help or solve this!!

Best answer by RowvillBh1

Yes, absolutely. We do this too and it works like a charm. In your case the calculated field on your task custom form should have this formula = 

{project}.{DE:Retail Start Date}
 
If you already have the correct formula, it might be worth checking for any extra spaces in the formula, making sure there is a date filled out on the project custom form in the "Retail Start Date" field and recalculating expressions as recommended by @morganhatcher 

2 replies

RowvillBh1
Level 5
September 19, 2025

Hi @jeanneneru ,

 

The most common issue is not referencing the right object. For example if you have a custom field on both request and project level, and you reference the request level field in your calculation then it will give you an N/A. Happy to help further if you could share your code for the calculated field.

 

-Rowvill

Level 2
September 19, 2025

I've been using similar Calculations as mentioned in the comment below. 

 

The Field we want to pull from name: "Retail Start Date" , into a calculated field in a custom form that is attached to a task. We are trying to build this into the custom form, so any new requests that are flipped into the project would automatically pull the dates from the Project into the Task form. 

 

Is this possible on Workfront?

RowvillBh1
RowvillBh1Accepted solution
Level 5
September 19, 2025

Yes, absolutely. We do this too and it works like a charm. In your case the calculated field on your task custom form should have this formula = 

{project}.{DE:Retail Start Date}
 
If you already have the correct formula, it might be worth checking for any extra spaces in the formula, making sure there is a date filled out on the project custom form in the "Retail Start Date" field and recalculating expressions as recommended by @morganhatcher 
MorganHatcher
Level 4
September 19, 2025

Hi @jeanneneru - 

 

One thing you may want to try is to recalculate the expressions to see if the calculated field updates. This can be found in the three-dot menu at the Project and Task levels. 

 

I did try this calculation on a task form field and it worked for me: ({project}.{DE:Custom Field Name})

Level 2
September 22, 2025

Thank you!!