> 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.

![](https://848134605-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LB5uRCyBpKz1Ivx_jfw%2F-LB5vlB5n_QZWd66WRWE%2F-LB5uYeRlrPQcwsB16SG%2Ftrello-roadmap-cumulative.png?generation=1524829727472129\&alt=media)

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.

![](https://848134605-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LB5uRCyBpKz1Ivx_jfw%2F-LB5vlB5n_QZWd66WRWE%2F-LB5uYfS_sehEFrheJSv%2Flist-group.gif?generation=1524829731443418\&alt=media)
