# \[Solved\] Need guide with ListViewer using Airtable

**URL:** https://community.thunkable.com/t/solved-need-guide-with-listviewer-using-airtable/77150
**Category:** Questions about Thunkable X
**Tags:** solved, listviewer, airtable
**Created:** [May 29, 2019, 7:16am UTC](https://community.thunkable.com/t/solved-need-guide-with-listviewer-using-airtable/77150 "2019-05-29T07:16:24Z")
**Posts on this page:** 9
**Page:** 1

<div class="post-metadata">

### Author: ![sysads](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/sysads/32/44975_2.png) [@sysads](https://community.thunkable.com/u/sysads)
#### Post date: [May 29, 2019, 7:16am UTC](https://community.thunkable.com/t/solved-need-guide-with-listviewer-using-airtable/77150/1 "2019-05-29T07:16:24Z")

</div>

Hi, I am still working my way with thunkable and need help or guide on how I can display datas from a spreadsheet column using listview.

- Basically my spreadsheet has 3 columns & 70 rows
- I have 2 screens
- When screen\_1 loads, it should display all 70 data from column\_1 in the listview
- When you click on one of the lists, it should load screen\_2 with corresponding data from columns 2 and 3

Because I am keen to learn, pls provide me with steps to achieve this or links to videos that explains this.

Thanks

---

<div class="post-metadata">

### Author: ![kartik\_old](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/kartik_old/32/28305_2.png) [@kartik\_old](https://community.thunkable.com/u/kartik_old)
#### Post date: [May 29, 2019, 10:02am UTC](https://community.thunkable.com/t/solved-need-guide-with-listviewer-using-airtable/77150/2 "2019-05-29T10:02:30Z")

</div>

Hi @sysads,  
You may use this block (for Scrn1 i.e column1) :

 ![temp](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/4/3/43c187b6c112c2af994d7f7e32b84ea3d02f86eb.png)

And I can’t understand your point :

> [@sysads](#):
>
> When you click on one of the lists, it should load screen\_2 with corresponding data from columns 2 and 3

Kartik

---

<div class="post-metadata">

### Author: ![sysads](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/sysads/32/44975_2.png) [@sysads](https://community.thunkable.com/u/sysads)
#### Post date: [May 29, 2019, 10:08am UTC](https://community.thunkable.com/t/solved-need-guide-with-listviewer-using-airtable/77150/3 "2019-05-29T10:08:39Z")

</div>

Hi and thanks for the reply. I will try out your steps now but can you figure out why my own step below keeps reloading the app when I try to navigate to the screen

![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/1/c/1c88e477cfeced04ac54bdf18c63ec34f9945dc5.png)

**Update**

**Ah my bad, I did not select the correct spreadsheet hence why it did not load. Now its loading with my setup above**

Also what I mean by this “When you click on one of the lists, it should load screen\_2 with corresponding data from columns 2 and 3” is

When I click each list row, it should load another screen with values corresponding to it’s row

---

<div class="post-metadata">

### Author: ![kartik\_old](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/kartik_old/32/28305_2.png) [@kartik\_old](https://community.thunkable.com/u/kartik_old)
#### Post date: [May 29, 2019, 10:17am UTC](https://community.thunkable.com/t/solved-need-guide-with-listviewer-using-airtable/77150/4 "2019-05-29T10:17:18Z")

</div>

You should do like :  
for each item **j** in column,  
do : add items to list --list name here-- item : **j**  
outside the for loop :  
set list.items to variable list  
You can see my above block **screen initialize**

Kartik

---

<div class="post-metadata">

### Author: ![sysads](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/sysads/32/44975_2.png) [@sysads](https://community.thunkable.com/u/sysads)
#### Post date: [May 29, 2019, 10:19am UTC](https://community.thunkable.com/t/solved-need-guide-with-listviewer-using-airtable/77150/5 "2019-05-29T10:19:04Z")

</div>

sorry i just made an update above. my setup works just as yours. i forgot to select the correct spreadsheet ☹

So just left with when I click each item, it should load a second screen with its corresponding row data

---

<div class="post-metadata">

### Author: ![jane](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/jane/32/27575_2.png) [@jane](https://community.thunkable.com/u/jane)
#### Post date: [May 29, 2019, 11:09am UTC](https://community.thunkable.com/t/solved-need-guide-with-listviewer-using-airtable/77150/6 "2019-05-29T11:09:19Z")

</div>

Hi there,

These blocks can help you display the information from column2 and column3 whose row number matches the item from column1 your user clicked.

Once you’ve displayed column1 in a List Viewer:  
 ![setrownum](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/f/f/fff23ac7480d86eaf39969964a0932ea3d2f79c4.png)

The index (row number) of the item selected is saved, the next Screen is opened.

When the next Screen opens:  
 ![setitem](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/1/b/1b027998d4303f8007155aca95d16673f41c43b6.png)

You can use this row number to retrieve the information that was saved to the same row in column2 and column3.

Hope that helps!

---

<div class="post-metadata">

### Author: ![kartik\_old](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/kartik_old/32/28305_2.png) [@kartik\_old](https://community.thunkable.com/u/kartik_old)
#### Post date: [May 29, 2019, 2:01pm UTC](https://community.thunkable.com/t/solved-need-guide-with-listviewer-using-airtable/77150/7 "2019-05-29T14:01:35Z")

</div>

@sysads,  
Please close this topic by marking as a solution.  
😄

and,

> [@heart Saying Thanks in the Community!](http://community.thunkable.com/t/saying-thanks-in-the-community/74080):
>
> So, you’ve taken the time to carefully craft a new topic title and filled it with details about the current question that’s on your mind. Suddenly, out of seven billion people on the planet, one of them has taken a few moments out of their day to respond to you. How should you react? heart Like, totally! The easiest way to show your appreciation is by simply clicking the “like” button to show you like what you’re hearing. Perhaps someone has pointed you to another topic, a video or a doc t…

---

<div class="post-metadata">

### Author: ![sysads](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/sysads/32/44975_2.png) [@sysads](https://community.thunkable.com/u/sysads)
#### Post date: [May 29, 2019, 2:28pm UTC](https://community.thunkable.com/t/solved-need-guide-with-listviewer-using-airtable/77150/8 "2019-05-29T14:28:49Z")

</div>

Mama mia, you are a super star. Thanks

---

<div class="post-metadata">

### Author: ![ioannis](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/ioannis/32/146956_2.png) [@ioannis](https://community.thunkable.com/u/ioannis)
#### Post date: [November 8, 2024, 12:13pm UTC](https://community.thunkable.com/t/solved-need-guide-with-listviewer-using-airtable/77150/9 "2024-11-08T12:13:36Z")

</div>


