내 커뮤니티 업적 표시줄을 확대합니다.

Don’t miss the Workfront AMA: System Smarts & Strategic Starts! Ask your questions about keeping Workfront running smoothly, planning enhancements, reporting, or adoption, and get practical insights from Adobe experts.

Mark Solution

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

Has anyone done a calculated field that shows a date difference between planned completion date and a custom date?

Avatar

Level 3

I have a Target Launch Date custom field and I would like to see the date difference between that date and the Planned Completion on the project.

주제

토픽은 커뮤니티 콘텐츠를 분류하여 관련성 있는 콘텐츠를 찾는 데 도움이 됩니다.

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Community Advisor

Hi Brittany,

There are a couple of different ways to achieve this depending on what your requirements are.

(1) You can create a new custom field on your project custom form that will work out the difference between the two dates so that you can then reference it in reports and visualise the data in graphs / charts. To achieve this you would simply add a calculated field to your project custom form and add the calculation: WEEKDAYDIFF(Planned Completion Date,Target Launch Date).

(2) You can add a column to an existing project report, switch it to text mode and add the following code. This will add a new column to your report view which will display the difference between the two dates. You wont be able to use this in graphs or charts and it will only work on the report where you have added this custom column

displayname=Date Difference

textmode=true

valueexpression=WEEKDAYDIFF({plannedCompletionDate},{DE:Target Launch Date})

valueformat=HTML

Hope this helps! Please shout if you have any questions.

Best Regards,

Rich.

원본 게시물의 솔루션 보기

2 답변 개

Avatar

정확한 답변 작성자:
Community Advisor

Hi Brittany,

There are a couple of different ways to achieve this depending on what your requirements are.

(1) You can create a new custom field on your project custom form that will work out the difference between the two dates so that you can then reference it in reports and visualise the data in graphs / charts. To achieve this you would simply add a calculated field to your project custom form and add the calculation: WEEKDAYDIFF(Planned Completion Date,Target Launch Date).

(2) You can add a column to an existing project report, switch it to text mode and add the following code. This will add a new column to your report view which will display the difference between the two dates. You wont be able to use this in graphs or charts and it will only work on the report where you have added this custom column

displayname=Date Difference

textmode=true

valueexpression=WEEKDAYDIFF({plannedCompletionDate},{DE:Target Launch Date})

valueformat=HTML

Hope this helps! Please shout if you have any questions.

Best Regards,

Rich.

Avatar

Level 3

Thanks! These helped!