Adding a Decision Date Column to an Approvals Report
Hi all,
I trying to see if it is possible to add a Decision Date column, then sort the column by date (newest to oldest). I tried the following formula but had no luck:
displayname=Decision Date
linkedname=direct
namekey=proofDecisionDate
querysort=proofDecisionDate
valuefield=proofDecisionDate
valueformat=atDate
sortType=asc
sortOrder=1
this blows up my report and I get an error message. I've also tried it with the value decisionDate instead of proofDecisionDate but no luck. I've been able to add a similar column with both the approver's name as well as their decision date via the following formula:
displayname=Approvers and Dates
listdelimiter=<p>
listmethod=nested(proofApprovals).lists
proofOwnerID=$$USER.ID
proofOwnerID_Mod=in
textmode=true
type=iterate
valueexpression=IF(!ISBLANK({decisionDate}),CONCAT("• ",{approver}.{name}," - ",{decisionDate}),CONCAT("• ",{approver}.{name}))
valueformat=HTML
Any help would be greatly appreciated.