> 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/ja/integrations/airtable/working-with-lists/filtering-airtable-lists.md).

# Airtableリストのフィルタリング

外部のAirtableコレクションに接続されたリストを使用すると、Airtableからのレコードのサブセットのみを表示するようにリストをフィルタリングするための多くのオプションがあります。

Airtableコレクションに接続されたリストをフィルタリングするには、まずリストを選択し、次に右パネルでAirtableコレクションを選択した後、\[フィルターを追加]ボタンをクリックします。

次に、フィルターの名前として「filterByFormula」を入力します。

式の値として、[Airtableでサポートされている任意の式](https://support.airtable.com/hc/en-us/articles/203255215-Formula-Field-Reference)を使用できます。リストは、式が真のレコードのみを表示します。式が偽のレコードはフィルタリングされます。

たとえば、名前がハワイである旅行のみを表示したい場合、フィルターの値は次の式になります：

({Name} = 'Hawaii')

\*波括弧内の内容はAirtableの列の名前である必要があります。

\*\*シングルクォート内の内容は、フィルターが検索する内容です。以下の例のように、これらのフィルターにはマジックテキストも使用できます：

![](/files/DRhbIdhUk0nur8Gh0w4n)

#### 以下は一般的な式の例です：

* 名前フィールド = ハワイ
  * ({Field Name} = 'Hawaii')
* 名前フィールドが空でない
  * NOT({Name} = '')
* フィールドにハワイが含まれる
  * Search('Hawaii', {Field Name})
* フィールドにハワイが含まれない
  * NOT(Search('Hawaii', {Field Name}))
* フィールドが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/ja/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.
