Hi,
What I’m trying to do
I would like to have tasks sorted and grouped from the highest priority to the lowest, and within each priority group, an additional grouping – IN PROGRESS before TO DO.
Things I have tried
not done
group by function task.priorityName.toUpperCase()
sort by function task.priorityNumber
group by function task.status.name
short mode
The above works almost well, and I’m almost satisfied with it, but the tasks are grouped alphabetically by priority instead of from the most important to the least important.