# Filtering Airtable Lists

With lists connected to external Airtable collections, you have a lot of options for filtering your list so that it only displays a subset of records from Airtable.

To filter your List that's connected to an Airtable collection, first select the list, and then in the right panel after you've selected the airtabel collection, click the Add Filter button

Then for the name of the filter enter "filterByFormula"

For the value of the formula, you can use [any formula supported by Airtable](https://support.airtable.com/hc/en-us/articles/203255215-Formula-Field-Reference).  The list will display any records from Airtable where the formula is true.  Any records where the formula is false will be filtered out.

For example, if you just wanted to show Trips where the Name was Hawaii, the value of your filter would be the following formula:

({Name} = 'Hawaii')

\*Whatever is inside of the curly brackets should be the name of the column in Airtable.

\*\*Whatever is inside of the single quotes is what you want the filter to look for.  You can also use magic text in these filters like in the example below:

![](https://3467607506-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LhGHkPsv15svPIU5I7C%2F-M2jYjF0kf6fQnUw9o2-%2F-M2jZuKoUb4mrlQXfC30%2FScreenshot%202020-02-20%20at%204.14.31%20PM.png?alt=media\&token=1712f85b-5583-42de-89cc-6e49d9d60f9f)

#### Below are some common formulas:

* Name field = Hawaii
  * ({Field Name} = 'Hawaii')
* Name field isn't empty
  * NOT({Name} = '')
* Field Contains Hawaii
  * Search('Hawaii', {Field Name})
* Field does not contain Hawaii
  * NOT(Search('Hawaii', {Field Name}))
* Field is greater than 17
  * ({Field Name} > 17)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.adalo.com/integrations/airtable/working-with-lists/filtering-airtable-lists.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
