WEEKDAYDIFF Between Native Field and the date of specific task
I spent a few hours combing articles and trying things yesterday and wasn’t able to figure this out. Looking for any help!
I have done WEEKDAYDIFF calculations using dates in the system like issue entry date vs project entry date. This time I want to do a WEEKDAYDIFF between the project entry date and the date of the kickoff task in the project.
I can successfully display the Kickoff date in a report using the following textmode:
displayname=Project Kickoff
listdelimiter=<div>
listmethod=nested(resolveProject.tasks).lists
type=iterate
valueexpression=IF(CONTAINS("Kickoff",{name}),CONCAT({plannedCompletionDate}))
valueformat=HTML
What I can’t figure out is how to work that kickoff task date into a WEEKDAYDIFF calculation.
For reference this is what I use for other WEEKDAYDIFF calculations like the issue entry date vs project entry date.
displayname=Request to Project Creation
valueexpression=WEEKDAYDIFF({entryDate},{resolveProject}.{entryDate})
valueformat=HTML
More context: This is in an issue report. I want to show the full lifecycle of a project. I have all the relevant dates showing (issue entry, project entry, project kickoff, project completion, etc) I am just working on WEEKDAYDIFF calculations for each step.