TASKS – sorting by priority works alphabetically

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.

Answer from Github:

group by function task.priorityNameGroupText.toUpperCase()

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.