Refresh
button to see a list of your Airtable bases. Create
.Select
to return to your Thunkable project.Refresh
button to see your Webflow site listed. Create
.create row in
block allows you to append new rows to the end of your data tables. get value from
blocks allows you get read one value from a specific cell in your data table. You can specify the column name in the block itself and pass the unique row id as an input. Get row object
will return the row object of the specified row ID. The row object can be used with Objects blocks.list of values in
block allows you to read an entire column of data from a table and returns it as a list that you can then manipulate with the built-in List blocks.number of rows in
block returns an integer corresponding to how many rows are in a given table.update value in
block to modify or update an existing cell in your data table. The column name is specified in the block itself. Both the row id and new value are passed as inputs. Delete Row
block to delete a row of data from your Data source.
The row id
is passed as an input.
If there is an error
, the error message is passed as an output. delete all rows
block to delete all rows in your data source.
If there is an error
, the error message is passed as an output.