> For the complete documentation index, see [llms.txt](https://help.adalo.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.adalo.com/integrations/airtable/working-with-lists/filtering-airtable-lists.md).

# 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:

![](/files/-M2jZuKoUb4mrlQXfC30)

#### 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
