I have a project report that shows details from all of project issues. I have a custom field "Team Annual Plan" defined and it can have values either "Resources Available" or "No Resources". If resources are available, I would like to show issue name with its t-shirt size (custom field "T-Shirt Size" defined at issue level), indicate that the resources are available and in which that issue can be delivered (custom field "Projected Team Delivery Quarter" defined at issue level). If resources are not available, I would like to show issue name with its t-shirt size and indicate that resources are not available.
I use lists in this report with one of it's columns defined as follows:
valueexpression=IF({DE:Team Annual Plan}="Resources available", concat(concat(concat(concat({name}, " -"), {DE:T-Shirt Size}), " - Resources Available - "), {DE:Projected Team Delivery Quarter}), IF({DE:Team Annual Plan}="No Resources", concat(concat(concat({name}, " -"), {DE:T-Shirt Size}), " - No Resources"), "" ))
listdelimiter=<p>
listmethod=nested(issues).lists
valueformat=HTML
displayname=Contributing Teams
textmode=true
type=iterate
This works as expected. This is a project report, so what you see below is one of the cell of a row in the report output.
Issue 1 - Small - Resources Available - 2023 Q3
Issue 2 - Large - Resources Available - 2023 Q4
Issue 3 - Medium - No Resources
Issue 4 - Small - Resources Available - 2023 Q4
:
:
I would like to sort this by size (large shows first, then medium, then small). Is that possible in Workfront text mode reporting?