How to recieve a data which just saves in airtable and forbid unknown

Hi there,
I want to do an action that is receive a data from the airtable spreadsheet.I don’t know how to explain correctly.Let me do it an example.

Assume My Minecraft server involved

  • Billy205
  • gorjoe

They are both saves in the airtable.

If the user type “Player C” into the text input,that should shows an alert.

else(type Billy205/gorjoe),will do a successful event.

This is what I currently doing

thanks.

I don’t think you can use an if statement here, you’ll need a for loop to go through all the items in the Column and then use your if statement inside that loop.

1 Like

In fact,how I do it great.thanks.

You wrote an algorithm:

If the user type “Player C” into the text input,that should shows an alert.

else(type Billy205/gorjoe),will do a successful event.

Now do it in blocks with help of “if else” bclock.

If x = “Player C”
alert
else if (x = Billy205/gorjoe)
good

HI thx for reply.
The fact is the user will not type “Player C” correctly,they are all doesn’t access unless the name is stored in airtable.

Then you need to check if the user has entered the correct data that is in the database, then good, if the entered data is not in the database - false.