Merge branch 'update/airtable'

This commit is contained in:
Tanay Pant 2021-04-07 10:59:54 +02:00
commit ddffdc1492

View File

@ -128,6 +128,19 @@ To create a `Record ID` column in your table, refer to this [article](https://su
To get the Record ID of your record, you can use the ***List*** operation of the Airtable node. This operation will return the Record ID along with the fields. You can then use this Record ID in your Airtable node.
### How to filter records when using the List operation?
To filter records from your Airtable base, use the ***Filter By Formula*** option. For example, if you want to return all the users that belong to the organization `n8n`, follow the steps mentioned below:
1. Select 'List' from the ***Operation*** dropdown list.
2. Enter the base ID and the table name in the ***Base ID*** and ***Table*** field, respectively.
3. Click on ***Add Option*** and select 'Filter By Formula' from the dropdown list.
4. Enter the following formula in the ***Filter By Formula*** field: `{Organization}='n8n'`.
Similarly, if you want to return all the users that do not belong to the organization `n8n`, use the following formula: `NOT({Organization}='n8n')`.
Refer to the Airtable [documentation](https://support.airtable.com/hc/en-us/articles/203255215-Formula-Field-Reference) to learn more about the formulas.
## Further Reading
- [Automating Conference Organization Processes with n8n](https://medium.com/n8n-io/automating-conference-organization-processes-with-n8n-ab8f64a7a520)