Time Elapsed from Issue to Start
I have a request for getting the elapsed time from when an Issue is submitted (in a stand-alone request queue project) to when it was converted to a project or task (in a separate project from the Issue).
So the first trick was getting the start date that the Issue was accepted and converted, which I am calling Work Start Date, since it could be a project or a task. I am doing this currently on an Issue report using:
valueexpression=IF(ISBLANK({resolveTask}.{entryDate})=true,{resolveProject}.{entryDate},{resolveTask}.{entryDate})
This is working, after my usual frustration with fiddly bracket syntax. ;-)
The problem is, I then need to get the number of weekdays between the result from above and the Issue submit date. I've tried a number of combinations like below that do not work:
valueexpression=WEEDAYDIFF({entryDate},(IF(ISBLANK({resolveTask}.{entryDate})=true,{resolveProject}.{entryDate},{resolveTask}.{entryDate})))
Assuming it did not like the nesting, I was trying to put the Work Start Date on a custom form in a custom field so that I could access the result more directly, but on both Issue-level and Project-level custom forms I kept getting Invalid errors, and it seems like Resolved fields may not be supported on these custom forms?
Manager wants this ASAP and I am so close!
Any thoughts?