# \[Solved\] Getting the Row number of a particular name in Name Column of Airtable

**URL:** https://community.thunkable.com/t/solved-getting-the-row-number-of-a-particular-name-in-name-column-of-airtable/106257
**Category:** Questions about Thunkable X
**Tags:** solved, lists, airtable
**Created:** [June 14, 2019, 1:49pm UTC](https://community.thunkable.com/t/solved-getting-the-row-number-of-a-particular-name-in-name-column-of-airtable/106257 "2019-06-14T13:49:55Z")
**Posts on this page:** 13
**Page:** 1

<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: [June 14, 2019, 1:49pm UTC](https://community.thunkable.com/t/solved-getting-the-row-number-of-a-particular-name-in-name-column-of-airtable/106257/1 "2019-06-14T13:49:55Z")

</div>

Hello,  
I want to get the **Row Number** of a Particular Name in the **Name** column…  
More clearly, searching every item in column named **Name** , and if item = User’s Name (variable), then get it’s row number and store it in a variable…

Thanks😄

---

<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: [June 14, 2019, 3:56pm UTC](https://community.thunkable.com/t/solved-getting-the-row-number-of-a-particular-name-in-name-column-of-airtable/106257/2 "2019-06-14T15:56:31Z")

</div>

Hi there,

If you use the **Get Column** block to get a Column from AirTable, you can use the following block to get the location of a given item in the list:  
 ![firstoccurence](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/d/0/d0cf53b63b0541da24f10060b9a84c27dca968a2.png)

Where the sample list is your Column.

If the name you’re searching for isn’t on the list, it will return 0.

Are your users guaranteed to have different user names?

---

<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: [June 14, 2019, 3:57pm UTC](https://community.thunkable.com/t/solved-getting-the-row-number-of-a-particular-name-in-name-column-of-airtable/106257/3 "2019-06-14T15:57:13Z")

</div>

Yes.  
If repeated, I may prefer using ID column…

---

<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: [June 14, 2019, 4:00pm UTC](https://community.thunkable.com/t/solved-getting-the-row-number-of-a-particular-name-in-name-column-of-airtable/106257/4 "2019-06-14T16:00:06Z")

</div>

Great! As long as each user has a unique name or ID, this block should work for you. 🙂

---

<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: [June 14, 2019, 4:00pm UTC](https://community.thunkable.com/t/solved-getting-the-row-number-of-a-particular-name-in-name-column-of-airtable/106257/5 "2019-06-14T16:00:53Z")

</div>

Thanks again!

---

<div class="post-metadata">

### Author: ![eoinparkinson](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/eoinparkinson/32/143769_2.png) [@eoinparkinson](https://community.thunkable.com/u/eoinparkinson)
#### Post date: [May 30, 2020, 10:47pm UTC](https://community.thunkable.com/t/solved-getting-the-row-number-of-a-particular-name-in-name-column-of-airtable/106257/6 "2020-05-30T22:47:02Z")

</div>

Hi,

> [@jane](#):
>
> If you use the **Get Column** block to get a Column from AirTable, you can use the following block to get the location of a given item in the list:  
> ![firstoccurence](http://community.thunkable.com/uploads/thunkable1/original/3X/d/0/d0cf53b63b0541da24f10060b9a84c27dca968a2.png)
> 
> Where the sample list is your Column.

### This was always my go to method and worked flawlessly, but since today it does not appear to be working as it should.

 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/7/b/7b528554f8e82eb64781c17ff662558376e18e4c.png)

### This should return my Surname, “Parkinson”. Instead it displays a blank white screen, which crashes the app, both native and web.

–

Now changing the **rowNum** to an actual number, in this case my Forename is present in #3 of the list, it returns my second name perfectly.

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

I’ve tried using math blocks to add zero to it to force it to be an integer but I’ve had no luck. I wanted to just double check here before I go to GitHub.

### Thanks.

# (edit)

It appears changing **maxNumRows** in the GetColumn block to a large number (bigger than the length of the column) shows it working. **I’ve never had this problem before**. I’ve had no issues using the _infinity_ block either with this.

Curious to know was this changed?

---

<div class="post-metadata">

### Author: ![ozel1978](https://avatars.discourse-cdn.com/v4/letter/o/3ec8ea/32.png) [@ozel1978](https://community.thunkable.com/u/ozel1978)
#### Post date: [November 3, 2020, 4:31am UTC](https://community.thunkable.com/t/solved-getting-the-row-number-of-a-particular-name-in-name-column-of-airtable/106257/7 "2020-11-03T04:31:55Z")

</div>

eoin,

surname is one of value in column forename?

---

<div class="post-metadata">

### Author: ![eoinparkinson](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/eoinparkinson/32/143769_2.png) [@eoinparkinson](https://community.thunkable.com/u/eoinparkinson)
#### Post date: [November 3, 2020, 7:41am UTC](https://community.thunkable.com/t/solved-getting-the-row-number-of-a-particular-name-in-name-column-of-airtable/106257/8 "2020-11-03T07:41:13Z")

</div>

Hi, yes I had this set wrong too however there was still something weird happening with Airtable at the time. I’ve had no trouble since with this component.

Thanks!

---

<div class="post-metadata">

### Author: ![ozel1978](https://avatars.discourse-cdn.com/v4/letter/o/3ec8ea/32.png) [@ozel1978](https://community.thunkable.com/u/ozel1978)
#### Post date: [November 3, 2020, 3:49pm UTC](https://community.thunkable.com/t/solved-getting-the-row-number-of-a-particular-name-in-name-column-of-airtable/106257/9 "2020-11-03T15:49:40Z")

</div>

thanks a lot. i am looking something like this but let me try if it was what i imagined.

---

<div class="post-metadata">

### Author: ![ozel1978](https://avatars.discourse-cdn.com/v4/letter/o/3ec8ea/32.png) [@ozel1978](https://community.thunkable.com/u/ozel1978)
#### Post date: [November 7, 2020, 2:47am UTC](https://community.thunkable.com/t/solved-getting-the-row-number-of-a-particular-name-in-name-column-of-airtable/106257/10 "2020-11-07T02:47:30Z")

</div>

eoin,

i try to get something similiar but my block does not seem right.

i want get list of number (column) base on other status (column) which is contain “Register” and want to list it at listviewer.

here is my block.

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

 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/6/0/6069bc16af24327900ed4f1c387d3a5bb8c33523.png)

---

<div class="post-metadata">

### Author: ![maurizio.polverini89](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/maurizio.polverini89/32/145191_2.png) [@maurizio.polverini89](https://community.thunkable.com/u/maurizio.polverini89)
#### Post date: [November 8, 2020, 12:37pm UTC](https://community.thunkable.com/t/solved-getting-the-row-number-of-a-particular-name-in-name-column-of-airtable/106257/11 "2020-11-08T12:37:43Z")

</div>

What if i they dont?  
I need to get different values from a column where the same name might be shown.

---

<div class="post-metadata">

### Author: ![nppvice](https://avatars.discourse-cdn.com/v4/letter/n/54ee81/32.png) [@nppvice](https://community.thunkable.com/u/nppvice)
#### Post date: [December 25, 2020, 7:10pm UTC](https://community.thunkable.com/t/solved-getting-the-row-number-of-a-particular-name-in-name-column-of-airtable/106257/12 "2020-12-25T19:10:30Z")

</div>

Any improvement with this? I just rann into same problem. Cells not updating. see attached image of blocks.

 ![Screenshot_113](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/d/2/d2705a4318cb0e4b1593693d329c8b15b973012d.jpeg)

---

<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, 11:28am UTC](https://community.thunkable.com/t/solved-getting-the-row-number-of-a-particular-name-in-name-column-of-airtable/106257/13 "2024-11-08T11:28:53Z")

</div>


