I’m having a problem with Airtable when I want to select a specifc row using a name which is already registered there. It does that but always brings the last register I think because of my counter. How can I get the row number which contains the exactly name wrote in the text_field?
Hey
I believe the error is in your conditional block, what you’re doing is asking if the name of your student is in the list only.
You might want to try to find the first item that is similar with the following block:
The find occurrence has a bug, it doesn’t return the row number which exactly matches the query.
Since you want to search the exact name, try this -
The bug
Suppose your list is {a,b,ab} and you want to find ab. it will return you 1, and that’s not the correct answer. when it finds the first letter of the item in the list (“ab”), it returns it’s position, ignoring the next letters.