# Where is the blocks of airtable in drag and drop version?

**URL:** https://community.thunkable.com/t/where-is-the-blocks-of-airtable-in-drag-and-drop-version/1614605
**Category:** Questions about Thunkable X
**Tags:** solved
**Created:** [November 14, 2021, 1:29pm UTC](https://community.thunkable.com/t/where-is-the-blocks-of-airtable-in-drag-and-drop-version/1614605 "2021-11-14T13:29:19Z")
**Posts on this page:** 11
**Page:** 1

<div class="post-metadata">

### Author: ![jdhchurchapps](https://avatars.discourse-cdn.com/v4/letter/j/e56c9b/32.png) [@jdhchurchapps](https://community.thunkable.com/u/jdhchurchapps)
#### Post date: [November 14, 2021, 1:29pm UTC](https://community.thunkable.com/t/where-is-the-blocks-of-airtable-in-drag-and-drop-version/1614605/1 "2021-11-14T13:29:20Z")

</div>

I’ve create airtable in data source in drag and drop version, including API input.  
However, can’t find the airtable blocks like call airtable GetAllRows.  
Where are the blocks of airtable in drag and drop version?

Thanks!!

---

<div class="post-metadata">

### Author: ![muneer](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/muneer/32/75210_2.png) [@muneer](https://community.thunkable.com/u/muneer)
#### Post date: [November 14, 2021, 1:33pm UTC](https://community.thunkable.com/t/where-is-the-blocks-of-airtable-in-drag-and-drop-version/1614605/2 "2021-11-14T13:33:40Z")

</div>

You can find it under the `Data Source` in the `Blocks Screen`. However, you need to first connect your project with an Airtable connection using the `Database Tab` in the `Design Screen`.

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

---

<div class="post-metadata">

### Author: ![jdhchurchapps](https://avatars.discourse-cdn.com/v4/letter/j/e56c9b/32.png) [@jdhchurchapps](https://community.thunkable.com/u/jdhchurchapps)
#### Post date: [November 14, 2021, 1:40pm UTC](https://community.thunkable.com/t/where-is-the-blocks-of-airtable-in-drag-and-drop-version/1614605/3 "2021-11-14T13:40:40Z")

</div>

Thanks for your reply!!  
It seems the Block for airtable is different from the snap to place version.  
Before I use ‘GetAllRows’ block with the ‘for each item j in list to check and get the specific rows’ item from airtable data source, how should I do for the new Blocks here?

Thanks.

---

<div class="post-metadata">

### Author: ![muneer](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/muneer/32/75210_2.png) [@muneer](https://community.thunkable.com/u/muneer)
#### Post date: [November 14, 2021, 1:45pm UTC](https://community.thunkable.com/t/where-is-the-blocks-of-airtable-in-drag-and-drop-version/1614605/4 "2021-11-14T13:45:13Z")

</div>

just choose any block and then click on the `table name` in the block to choose the Airtable table. The blocks are the same and because you added Google sheet first you will see **JDH** on all the blocks but once you select any block and use it in your blocks screen then just click on **JDH** and change it to **JDH Apps**.

---

<div class="post-metadata">

### Author: ![jdhchurchapps](https://avatars.discourse-cdn.com/v4/letter/j/e56c9b/32.png) [@jdhchurchapps](https://community.thunkable.com/u/jdhchurchapps)
#### Post date: [November 14, 2021, 1:47pm UTC](https://community.thunkable.com/t/where-is-the-blocks-of-airtable-in-drag-and-drop-version/1614605/5 "2021-11-14T13:47:39Z")

</div>

Thanks for your reply!!

It seems the Block for airtable is different from the snap to place version.  
Before I use ‘GetAllRows’ block with the ‘for each item j in list to check and get the specific rows’ item from airtable data source, how should I do for the new Blocks here?

Thanks.

---

<div class="post-metadata">

### Author: ![muneer](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/muneer/32/75210_2.png) [@muneer](https://community.thunkable.com/u/muneer)
#### Post date: [November 14, 2021, 1:55pm UTC](https://community.thunkable.com/t/where-is-the-blocks-of-airtable-in-drag-and-drop-version/1614605/6 "2021-11-14T13:55:50Z")

</div>

The `GetAllRows` was available in the old connection that was in StP UI. It is not anymore available in this UI.

If you are looking for the value of the single column in the table then you can use  
 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/0/e/0ef471f0d4b64a44487c9f92872b0e84c023b04b.png)  
Which you can use the same looping block  
 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/0/f/0fb29f46561a146bc1704863114dba34a86f62fc.png)

---

<div class="post-metadata">

### Author: ![jdhchurchapps](https://avatars.discourse-cdn.com/v4/letter/j/e56c9b/32.png) [@jdhchurchapps](https://community.thunkable.com/u/jdhchurchapps)
#### Post date: [November 14, 2021, 2:05pm UTC](https://community.thunkable.com/t/where-is-the-blocks-of-airtable-in-drag-and-drop-version/1614605/7 "2021-11-14T14:05:31Z")

</div>

[![](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/0/e/0ef471f0d4b64a44487c9f92872b0e84c023b04b.png) ](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/0/e/0ef471f0d4b64a44487c9f92872b0e84c023b04b.png)  
This new Block can only look for a single column in the table.  
If I have 2 column in the table, checking specific column 1 value and return for Column 2 value, how should I do for that?  
Thanks!!

---

<div class="post-metadata">

### Author: ![muneer](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/muneer/32/75210_2.png) [@muneer](https://community.thunkable.com/u/muneer)
#### Post date: [November 14, 2021, 2:20pm UTC](https://community.thunkable.com/t/where-is-the-blocks-of-airtable-in-drag-and-drop-version/1614605/8 "2021-11-14T14:20:06Z")

</div>

This block is actually a list of all the rows in one column and if you find what you want in this list then get the position in the list which will be the row number in the table and get the value from the table in that row

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

In this block of code I am searching for the name in the list to be **JDH Apps** and if it is then show the code from the corresponding column in the screen. It would also exit from the loop as my list does not have duplicated names and continuing the loop would not be of any benefit.

Hope this makes things clearer.

---

<div class="post-metadata">

### Author: ![jdhchurchapps](https://avatars.discourse-cdn.com/v4/letter/j/e56c9b/32.png) [@jdhchurchapps](https://community.thunkable.com/u/jdhchurchapps)
#### Post date: [November 14, 2021, 2:38pm UTC](https://community.thunkable.com/t/where-is-the-blocks-of-airtable-in-drag-and-drop-version/1614605/9 "2021-11-14T14:38:08Z")

</div>

It works!! Thanks a lot!!  
The logic is a bit different from the previous version, and it becomes more straight forward as to check for the RowID for getting the Row items in another column.

Thanks!!

---

<div class="post-metadata">

### Author: ![muneer](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/muneer/32/75210_2.png) [@muneer](https://community.thunkable.com/u/muneer)
#### Post date: [November 14, 2021, 2:53pm UTC](https://community.thunkable.com/t/where-is-the-blocks-of-airtable-in-drag-and-drop-version/1614605/10 "2021-11-14T14:53:11Z")

</div>

Glad it helped.

Appreciate if you can mark it as **solved**. It helps others with similar issue to find the solution quicker.

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/0/f/0f59f292712368bce16ff80133ae10de8a6f27e8.png) [@system](https://community.thunkable.com/u/system)
#### Post date: [February 12, 2022, 2:54pm UTC](https://community.thunkable.com/t/where-is-the-blocks-of-airtable-in-drag-and-drop-version/1614605/11 "2022-02-12T14:54:04Z")

</div>

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