# \[Solved\] Is it possible get other cell info based in one cell info?

**URL:** https://community.thunkable.com/t/solved-is-it-possible-get-other-cell-info-based-in-one-cell-info/162710
**Category:** Questions about Thunkable X
**Tags:** solved, listviewer, airtable
**Created:** [July 31, 2019, 12:13am UTC](https://community.thunkable.com/t/solved-is-it-possible-get-other-cell-info-based-in-one-cell-info/162710 "2019-07-31T00:13:56Z")
**Posts on this page:** 17
**Page:** 1

<div class="post-metadata">

### Author: ![Yukold](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/yukold/32/35122_2.png) [@Yukold](https://community.thunkable.com/u/Yukold)
#### Post date: [July 31, 2019, 12:13am UTC](https://community.thunkable.com/t/solved-is-it-possible-get-other-cell-info-based-in-one-cell-info/162710/1 "2019-07-31T00:13:56Z")

</div>

Here a image from airtable to understand better

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

My question is: when i put one label to get the information from one cell example: “Essência” he return “#My Beirut”  
I can use this cell returned to get another information from the same line? example: Return the “marca” and “sabor 1” (in this specif case will be Zomo and tutti Frutti) ?

---

<div class="post-metadata">

### Author: ![renren66](https://avatars.discourse-cdn.com/v4/letter/r/34f0e0/32.png) [@renren66](https://community.thunkable.com/u/renren66)
#### Post date: [July 31, 2019, 2:53am UTC](https://community.thunkable.com/t/solved-is-it-possible-get-other-cell-info-based-in-one-cell-info/162710/2 "2019-07-31T02:53:52Z")

</div>

![Capture(5)](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/e/8/e818ad42a862dc49fe6a0ce1d27db41d5fc953ad.png)  
You can search the “Essência” column and return the row like so.

---

<div class="post-metadata">

### Author: ![Yukold](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/yukold/32/35122_2.png) [@Yukold](https://community.thunkable.com/u/Yukold)
#### Post date: [July 31, 2019, 8:24am UTC](https://community.thunkable.com/t/solved-is-it-possible-get-other-cell-info-based-in-one-cell-info/162710/4 "2019-07-31T08:24:12Z")

</div>

![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/2/f/2f76b18ed8dd61adc7eb0e2b0561ffe5fe1b89c9.jpeg)  
All this texts is a button… clone by airtable rows…

 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/5/e/5e53525f267f4534bc629582927e684550fdb7d4.png)

What i need to do to in another block the button i click get the text in a label?  
I think are impossible clone this  
 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/c/a/cab112a13e64beb19e0982853064ea171c3430a6.png)  
I need get the cloned texts to put here  
 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/8/0/80f494fded678d5c6b3553e565348ebe4b9fd5c4.png)  
And the other screen get this name infos to put in the label… because from this text i will get another info´s from the airtable column

To understand better…

 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/2/f/2f76b18ed8dd61adc7eb0e2b0561ffe5fe1b89c9.jpeg)

When i click in the first button he go another screen and give this:

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

If i click in the second button give this:

 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/3/8/38db04a5db23c731e2f27649c7750357746a9e09.png)

All buttons cloned…

---

<div class="post-metadata">

### Author: ![domhnallohanlon](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/domhnallohanlon/32/29554_2.png) [@domhnallohanlon](https://community.thunkable.com/u/domhnallohanlon)
#### Post date: [July 31, 2019, 10:48am UTC](https://community.thunkable.com/t/solved-is-it-possible-get-other-cell-info-based-in-one-cell-info/162710/5 "2019-07-31T10:48:38Z")

</div>

Here’s a quick explainer of my approach to this:

### Screen1

The first thing I do is get 30 out of the 100 names from Airtable, and display them in the ListViewer:

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

Then when one of the names in the ListViewer is clicked, the index of the clicked items is stored in this `rowNumber` variable

![23](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/8/8/889ad2692ff050309963c11606cc99e271b3e285.png)

### Screen2

On Screen2 the `rowNumber` variable is used to get a row of data from Airtable and once this is done all the labels are populated with the relevant data.

Note that `Label3` is just used for debugging.

 ![09](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/5/c/5cdcea7d6ed8684089d59d6eee7b1752b4fc4ef9.png)

Hope that helps!

---

<div class="post-metadata">

### Author: ![Yukold](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/yukold/32/35122_2.png) [@Yukold](https://community.thunkable.com/u/Yukold)
#### Post date: [July 31, 2019, 1:12pm UTC](https://community.thunkable.com/t/solved-is-it-possible-get-other-cell-info-based-in-one-cell-info/162710/6 "2019-07-31T13:12:03Z")

</div>

Thanks for the help Domhnall

I think the problem here i don’t use list viewer and i cant use because in the real project i put 3 column and one of these have images…

Here is the “final” format… hehe

 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/4/1/412c93a2ab32958f0c377a20c4fbb7a0fb5c4ae5.jpeg)

I just have 2 problems here…  
First its change “when any button click” to “buttons cloned click” because will have other buttons in this screens to filter the products…  
And second is when i click in the image, name or rating will go other screen to show info´s about this products… so i can get other info´s from this product because i put all infos from it in one row in the airtable…

 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/a/9/a9e3486d5506998e2d9be0de5cc1dc198c1a9abc.png)  
Here all info´s from this products…

So when i click in the product will show this in other screen:

 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/6/2/6225156330bc242bedf706792d05ce96b59970d0.jpeg)

I don´t know how i get all this informations based in the button click from screen 1…  
I think if i get the name on screen 1 and put it on screen 2 i can get all the other informations from airtable based only in the name from the product… but now i have doubts if that would work

I think this hint can be help… in the first image i will put 6 labels invisible to get information from “Sabor 1-6” just because in the text\_input when anyone write the sabor he just show all from this sabor  
Just to know sabor = flavor  
So i can get all information in screen 1 and just put this informations in screen 2 🙂

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

All blocks from screen 1 to get all informations… i just need in screen 2 he know what button clicked in screen 1 and get all information about the right product

---

<div class="post-metadata">

### Author: ![renren66](https://avatars.discourse-cdn.com/v4/letter/r/34f0e0/32.png) [@renren66](https://community.thunkable.com/u/renren66)
#### Post date: [August 1, 2019, 2:13am UTC](https://community.thunkable.com/t/solved-is-it-possible-get-other-cell-info-based-in-one-cell-info/162710/7 "2019-08-01T02:13:12Z")

</div>

#1: You just need to account for the extra buttons like so (-1 for the button on top):

 ![Capture(9)](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/f/9/f97863f431a045abadc053534aecc47b96b59085.png)  
#2: Store the index in a variable. As variables can be used across screens, you can reference the index in the other screen like this:  
 ![Capture(10)](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/7/1/71965b45e024b7cbf150de1ddb40d1c2a93bbfa2.png)

---

<div class="post-metadata">

### Author: ![Yukold](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/yukold/32/35122_2.png) [@Yukold](https://community.thunkable.com/u/Yukold)
#### Post date: [August 1, 2019, 5:42am UTC](https://community.thunkable.com/t/solved-is-it-possible-get-other-cell-info-based-in-one-cell-info/162710/8 "2019-08-01T05:42:23Z")

</div>

From your first image block with list -1 i think u are talking about this button:

 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/6/8/681476f66a6ca004c98293dfd5196464f43c27cf.jpeg)  
I copy  
 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/3/3/33625a140acfe26c2b94b185cd3cafbfdf43ecbb.png)  
Maybe i do anything wrong… just to confirm…

But this blocks don’t work, he still going to screen 2…

SOLVED!  
Here the solution (renren66 send me this image in pm, thanks!!)

 ![Capture(11)](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/0/6/06a7af374e24c0065e2df9ea03e9dc30a50bec9f.png)

Blocks from screen 2:

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

The problem is here:

I selected the first:

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

He return:

 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/2/a/2ade44aaa44b58013684a6a3e6dd0d34ed68d5b1.png)  
The information are wrong…  
The first name is #My Passion Fruit with Mint  
And above “Sabor(es)” is  
Maracujá  
Menta

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

My apologies for my lack of knowledge, I really don’t understand very well about these blocks

Just to know, i solve the problem…

To explain better see this image

 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/d/5/d510793f16520f89cbac79da76ab47d62e5cfc35.png)  
Have 3 button, when i click in the first button (image), he go to screen2 and give info´s from the first item from the list, when i click in the second button (name from the object) he go to screen 2 and give info´s from the second item and so on  
This is the list  
 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/5/8/587f615d733bdbde012b38d46b49b5898b906777.jpeg)

So to solve this, i change all this buttons for image and labels and put a cover button inside this 3 and now everything is fine 🙂  
Again thanks so much for help me @renren66 =)

The last problem from this case is about the image…  
In screen 2 he never show the image… have special conditions to get all images from airtable, so i think i need diferent way to get this in screen 1 and share in the screen 2.

Here are the blocks from screen 1 and 2

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

---

<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: [August 1, 2019, 9:48am UTC](https://community.thunkable.com/t/solved-is-it-possible-get-other-cell-info-based-in-one-cell-info/162710/9 "2019-08-01T09:48:39Z")

</div>

Hello @Yukold !

> [@Yukold](#):
>
> The last problem from this case is about the image…  
> In screen 2 he never show the image… have special conditions to get all images from airtable, so i think i need different way to get this in screen 1 and share in the screen 2.

Refer to this -

> [@How to use StartValue in Thunkable X with LocalStorage](http://community.thunkable.com/t/how-to-use-startvalue-in-thunkable-x-with-localstorage/115613):
>
> Hello, Thunkers! In this post, we’ll talk about How to implement StartValue in App I saw many users seeking for the solution for StartValue in Thunkable X… thinking So, finally, I found myself a solution and I want you all to have a look at it grin So, if you want to transfer any type of value to another screen, you may try using LocalStorage for this. I have some code blocks related to the above idea. You may take reference from them below : Sending Start Value [image] Getting Start…

Thanks! 😄

---

<div class="post-metadata">

### Author: ![Yukold](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/yukold/32/35122_2.png) [@Yukold](https://community.thunkable.com/u/Yukold)
#### Post date: [August 2, 2019, 6:57am UTC](https://community.thunkable.com/t/solved-is-it-possible-get-other-cell-info-based-in-one-cell-info/162710/10 "2019-08-02T06:57:06Z")

</div>

Hey Kartik,  
even learning in your topic, here I still have problems, I just can not do … I changed some blocks but then only numbers appeared instead of the correct information, so I went back to using the blocks that @renren66 suggested … I tried to continue and even managed to send the image, but it was never the same as the list, was the wrong image in case.  
Why the hell I can not understand this logic 😤

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

When i change app imagecell to app selecteditem he stop show any information.  
😡

@Mark can help again please?

---

<div class="post-metadata">

### Author: ![Mark](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/mark/32/18133_2.png) [@Mark](https://community.thunkable.com/u/Mark)
#### Post date: [August 5, 2019, 7:00pm UTC](https://community.thunkable.com/t/solved-is-it-possible-get-other-cell-info-based-in-one-cell-info/162710/11 "2019-08-05T19:00:35Z")

</div>

@Yukold, one issue that I see is that in your function `getimagefromlist`, you should be referencing the function’s `'x'` parameter (which you can find in the Variables category) rather than the `'app imagecell'` variable.

-Mark

---

<div class="post-metadata">

### Author: ![Yukold](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/yukold/32/35122_2.png) [@Yukold](https://community.thunkable.com/u/Yukold)
#### Post date: [August 5, 2019, 9:12pm UTC](https://community.thunkable.com/t/solved-is-it-possible-get-other-cell-info-based-in-one-cell-info/162710/12 "2019-08-05T21:12:58Z")

</div>

![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/e/4/e4a0281f705d82d8a7c174b03e81419c2f83ee4f.png)

When i change this the app dont show nothing…

---

<div class="post-metadata">

### Author: ![Mark](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/mark/32/18133_2.png) [@Mark](https://community.thunkable.com/u/Mark)
#### Post date: [August 5, 2019, 10:56pm UTC](https://community.thunkable.com/t/solved-is-it-possible-get-other-cell-info-based-in-one-cell-info/162710/13 "2019-08-05T22:56:42Z")

</div>

> [@Yukold](#):
>
> When i change this the app dont show nothing…

Does it work if you remove the `'from Image2 set Picture to ...'` block?

-Mark

---

<div class="post-metadata">

### Author: ![Yukold](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/yukold/32/35122_2.png) [@Yukold](https://community.thunkable.com/u/Yukold)
#### Post date: [August 6, 2019, 4:21am UTC](https://community.thunkable.com/t/solved-is-it-possible-get-other-cell-info-based-in-one-cell-info/162710/14 "2019-08-06T04:21:19Z")

</div>

@Mark  
No… feel free to try…

i am just trying to put the selected image of screen1 on screen2 …

 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/8/b/8becf7fe9d680de0685eced7c27cc56e286c6416.jpeg)

When i selected the 3 option… he show:

 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/f/8/f85ec68be672ec711b0fdd7ff101384d53410683.jpeg)

I just need the image appears the right selection…

here are the project  
[https://x.thunkable.com/projects/5d3ce079d5ceda3cbec47d3a/915d7d5b-0f5e-42bc-89a2-95cebe87b1e0/designer](https://x.thunkable.com/projects/5d3ce079d5ceda3cbec47d3a/915d7d5b-0f5e-42bc-89a2-95cebe87b1e0/designer)

Last Edit:

Hey @Mark

I owe you a thousand apologies, I did it wrong and I believe I missed attention, I was changing things on screen1 and the right thing was on screen 2 … I’m very dumb …

However …

I spent over 6 hours trying to find the solution to this problem (simple and stupid by the way) and now I could find …

Image below how it looked … I don’t know why it worked, but it worked …  
I just hate it when things go well and I don’t know why …

 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/9/e/9e306a8bcf9d07c62fbe7a10f3f9f859d8ebbaa2.png)

---

<div class="post-metadata">

### Author: ![creeperhd33](https://avatars.discourse-cdn.com/v4/letter/c/e99b99/32.png) [@creeperhd33](https://community.thunkable.com/u/creeperhd33)
#### Post date: [February 21, 2020, 6:27pm UTC](https://community.thunkable.com/t/solved-is-it-possible-get-other-cell-info-based-in-one-cell-info/162710/15 "2020-02-21T18:27:23Z")

</div>

Thanks, worked for me.  
Had the same problem/Idea I couldnt solve 🙂

---

<div class="post-metadata">

### Author: ![David\_Angel](https://avatars.discourse-cdn.com/v4/letter/d/ce7236/32.png) [@David\_Angel](https://community.thunkable.com/u/David_Angel)
#### Post date: [January 9, 2022, 5:51pm UTC](https://community.thunkable.com/t/solved-is-it-possible-get-other-cell-info-based-in-one-cell-info/162710/17 "2022-01-09T17:51:34Z")

</div>

![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/0/9/09786e5ad9c1bf1760dcc262d1937997573b3a23.png)  
alguien me puede ayudar me devuelve null

---

<div class="post-metadata">

### Author: ![tatiang](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/tatiang/32/55482_2.png) [@tatiang](https://community.thunkable.com/u/tatiang)
#### Post date: [January 9, 2022, 8:18pm UTC](https://community.thunkable.com/t/solved-is-it-possible-get-other-cell-info-based-in-one-cell-info/162710/18 "2022-01-09T20:18:55Z")

</div>

@David_Angel Please don’t post the same question in more than one topic.

---

<div class="post-metadata">

### Author: ![tatiang](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/tatiang/32/55482_2.png) [@tatiang](https://community.thunkable.com/u/tatiang)
#### Post date: [January 9, 2022, 8:19pm UTC](https://community.thunkable.com/t/solved-is-it-possible-get-other-cell-info-based-in-one-cell-info/162710/19 "2022-01-09T20:19:01Z")

</div>


