In timeline view, how can I keep the same order on the grid when grouping by category

Alicia D
Alicia D ✭✭✭✭✭

In the new timeline view, I have created a column called "title" so that I can group by each category. However, when I do this it puts the categories in alphabetical order and not the order that it displays in the grid view. How can I change this? For instance, introduction and several other things should come before configuration.

Best Answers

  • Matt Lynn ACT
    Matt Lynn ACT Community Champion
    Answer βœ“

    @Alicia D

    Try this: Change your new column called "title" to a drop down menu and put the options in the order that you want to see them within the drop down options. On my sheet, the grouping is sorted in the same order as my drop down options.

    Matt Lynn

    How can I help? Schedule some time on my calendar: CLICK HERE

  • Matt Lynn ACT
    Matt Lynn ACT Community Champion
    Answer βœ“

    @Alicia D

    Option 1 (Formula I originally provided as a column formula)

    =IFERROR(INDEX(ANCESTORS(Task@row), 1), Task@row)

    Result:

    Option 2

    =IFERROR(INDEX(PARENT(Task@row), 1), Task@row)

    Result:

    Matt Lynn

    How can I help? Schedule some time on my calendar: CLICK HERE

Answers