Hello community. I am rather new at Workfront and fumbling my way through report creation. We have a report we are trying to build for a team, that the data they want to see and how they want to see it, will require it to be a project report. The columns they want to see is a mixture of pulling in Project level data and Task level data.
The Main column that they want to sort the report by is Task level data so we need to use the Text Mode function to display it. After searching around Workfront one, I finally came up with this Text Mode code to display the Data. Which that part is working. The column is sortable, but when they click on the header, the sort order isn't necessarily in Date order. is there some way to get the column to sort correctly? Is there another way to write the Text Mode code?
displayname=DE Instns Due
listdelimiter=
listmethod=nested(tasks).lists
querysort=plannedCompletionDate
textmode=true
type=iterate
valueexpression=IF({milestone}.{ID}="6234b043002271878364284dcc246a6b",({plannedCompletionDate}),"")
valueformat=shortAtDate
The other option we though of is creating a calculated date that pulls in this data. then using that field as a column. However we are having trouble pulling in the Task Data into the calculated field. I would prefer just using the Text mode, since it seem like a waste to create a field just for one report.