# How to display lists along the sections which the lists belongs to

**URL:** https://community.glideapps.com/t/how-to-display-lists-along-the-sections-which-the-lists-belongs-to/82932
**Category:** Ask for Help
**Created:** [July 4, 2025, 8:03am UTC](https://community.glideapps.com/t/how-to-display-lists-along-the-sections-which-the-lists-belongs-to/82932 "2025-07-04T08:03:04Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![JungMinGyu](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/jungmingyu/32/89298_2.png) [@JungMinGyu](https://community.glideapps.com/u/JungMinGyu)
#### Post date: [July 4, 2025, 8:03am UTC](https://community.glideapps.com/t/how-to-display-lists-along-the-sections-which-the-lists-belongs-to/82932/1 "2025-07-04T08:03:04Z")

</div>

Dear Users

I have a table of questionaries, and each questionary belongs to a section (e.g., Section 1, Section 2, etc.). Each section has 5 questions like 1.1, 1.2, 1.3, etc

I want to create a screen where users can see a list of Sections first, and when they click on a Section (for example, Section 1), it opens a new screen that displays only the questions related to that Section (e.g., 1.1, 1.2…).

What’s the best way to set this up in Glide?

---

<div class="post-metadata">

### Author: ![Darren\_Murphy](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/darren_murphy/32/47326_2.png) [@Darren\_Murphy](https://community.glideapps.com/u/Darren_Murphy)
#### Post date: [July 4, 2025, 8:15am UTC](https://community.glideapps.com/t/how-to-display-lists-along-the-sections-which-the-lists-belongs-to/82932/2 "2025-07-04T08:15:43Z")

</div>

You should separate them into 2 tables - Sections and Questions

- The Sections table should have two columns: RowID and Section name
- The Questions table should have 3 columns: RowID, SectionID (RowID from Sections table), and Question
- Then create a multiple relation column in your Sections table that matches the RowID with the Section ID column in your Questions table.
- Finally, use that relation as the source of a Collection.

Learn more below:

[![](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/4/6/46784c95dc6dd923c1719c7b7629b7f8bad99e93.jpeg "Things in Things | Glide Apps Tutorial | No Code") ](https://www.youtube.com/watch?v=HwKoIekup00)

---

<div class="post-metadata">

### Author: ![ThinhDinh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/thinhdinh/32/49_2.png) [@ThinhDinh](https://community.glideapps.com/u/ThinhDinh)
#### Post date: [July 5, 2025, 12:19am UTC](https://community.glideapps.com/t/how-to-display-lists-along-the-sections-which-the-lists-belongs-to/82932/3 "2025-07-05T00:19:29Z")

</div>

Here’s some sample data to demonstrate Darren’s suggestion.

Sections Table

| RowID | Section Name |
| --- | --- |
| S001 | Section 1 |
| S002 | Section 2 |
| S003 | Section 3 |

Questions Table

| RowID | SectionID | Question Number | Question |
| --- | --- | --- | --- |
| Q001 | S001 | 1.1 | What is X? |
| Q002 | S001 | 1.2 | How to Y? |
| Q003 | S001 | 1.3 | Explain Z |
| Q004 | S002 | 2.1 | Define A |
| Q005 | S002 | 2.2 | Describe B |
| Q006 | S003 | 3.1 | What is C? |
| Q007 | S003 | 3.2 | How to D? |

---

<div class="post-metadata">

### Author: ![JungMinGyu](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/jungmingyu/32/89298_2.png) [@JungMinGyu](https://community.glideapps.com/u/JungMinGyu)
#### Post date: [August 8, 2025, 3:29am UTC](https://community.glideapps.com/t/how-to-display-lists-along-the-sections-which-the-lists-belongs-to/82932/4 "2025-08-08T03:29:07Z")

</div>

Dear Darren\_Murphy and ThinhDinh

Hope you are doing well.

Thank you for your advice.

As per your advice, I have revised the table and was able to resolve the issue through the ‘Things in Things’ video.  
I appreciate your helpful response.

---

<div class="post-metadata">

### Author: ![ThinhDinh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/thinhdinh/32/49_2.png) [@ThinhDinh](https://community.glideapps.com/u/ThinhDinh)
#### Post date: [August 8, 2025, 11:49pm UTC](https://community.glideapps.com/t/how-to-display-lists-along-the-sections-which-the-lists-belongs-to/82932/5 "2025-08-08T23:49:21Z")

</div>

Great to have helped! I marked Darren’s comment as the solution.

---

<div class="post-metadata">

### Author: ![system](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/system/32/53398_2.png) [@system](https://community.glideapps.com/u/system)
#### Post date: [August 15, 2025, 11:49pm UTC](https://community.glideapps.com/t/how-to-display-lists-along-the-sections-which-the-lists-belongs-to/82932/6 "2025-08-15T23:49:36Z")

</div>

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