> ## Documentation Index
> Fetch the complete documentation index at: https://docs.twenty.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Create a Table View with Grouping

> Organize your records into collapsible groups by field value.

export const VimeoEmbed = ({videoId, title = 'Video'}) => <div style={{
  padding: '69.01% 0 0 0',
  position: 'relative',
  margin: '32px 0px',
  borderRadius: '16px',
  overflow: 'hidden',
  border: '2px solid black'
}}>
    <iframe src={`https://player.vimeo.com/video/${videoId}?autoplay=1&loop=1&autopause=0&background=1&app_id=58479`} frameBorder="0" allow="autoplay; fullscreen; picture-in-picture; clipboard-write" style={{
  position: 'absolute',
  top: 0,
  left: 0,
  width: '100%',
  height: '100%',
  transform: 'scale(1.1)'
}} title={title} />
  </div>;

Group your table view by a Select field to organize records into collapsible sections.

<img src="https://mintcdn.com/twenty/nHykqzejUXmkEL88/images/user-guide/table-views/table-group-by.png?fit=max&auto=format&n=nHykqzejUXmkEL88&q=85&s=801cc930101811df38a52b5435f093ad" style={{width:'100%'}} width="4496" height="2536" data-path="images/user-guide/table-views/table-group-by.png" />

## Steps

1. Navigate to the object (People, Companies, etc.)
2. Click the view dropdown → **+ Add view**
3. Name your view (e.g., "Companies by Type")
4. Click **Create**
5. Click **Options → Group**
6. Choose a Select field to group by
7. Click **Save**

## Configure Group Order

Under **Options → Group → Sort**, choose how groups are ordered:

| Option                   | Description                                   |
| ------------------------ | --------------------------------------------- |
| **Alphabetical**         | A to Z                                        |
| **Reverse alphabetical** | Z to A                                        |
| **Manual order**         | Drag groups to reorder under "Visible groups" |

Click the **eye icon** next to a group to hide it from the view.

<Note>
  **For best performance, limit to 10-15 visible groups.** If you need more, consider using a Dashboard instead.
</Note>

## Example: Companies by Industry

1. Go to **Companies**
2. Create a new view named "By Industry"
3. Click **Options → Group**
4. Select the **Industry** field
5. Save

Now your companies are organized by industry, making it easy to focus on one segment at a time.

## Related

* [Table Views](/user-guide/views-pipelines/capabilities/table-views) — all table view features
* [Filters and Sorting](/user-guide/views-pipelines/capabilities/filters-and-sorting) — combine grouping with filters
