> For the complete documentation index, see [llms.txt](https://trello-guide.vizydrop.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://trello-guide.vizydrop.com/grouping-lists.md).

# Grouping Lists

Sometimes, you need to group lists together. Let's use the [Trello Public Roadmap board](https://trello.com/b/nC8QJJoZ/trello-development-roadmap) and Cumulative Flow chart as examples.

![](/files/-LB5uYeRlrPQcwsB16SG)

As you can see, there are Live lists created for every quarter. We need to unite them into a single group, because we're interested in total feature progress, rather than tracking separate cards.

This can be done using the `CASE WHEN` statement. So, we need to select 'List' in the Color panel, and change the calculation to the following:

`CASE WHEN CONTAINS([List], 'Live') THEN 'Live' ELSE [List]`

We then need to rename the Axis Label to 'List', since it is currently auto-named.

![](/files/-LB5uYfS_sehEFrheJSv)
