> ## Documentation Index
> Fetch the complete documentation index at: https://help.dingtalk.io/llms.txt
> Use this file to discover all available pages before exploring further.

# AI テーブルの ISBLANK 関数の使い方

> 📌 その他の関数については数式関数リファレンスをご参照ください。

> 📌 その他の関数については[数式関数リファレンス](/ja/aitable/formulas/function-reference)をご参照ください。

# 1 関数の基本紹介

**ISBLANK** は、Microsoft Excel や Google Sheets などのスプレッドシートで広く使われる関数で、指定したセルが空かどうかを判定します。指定したセルが空の場合は **TRUE** を返し、何らかの値（空文字列や数式の結果も含む）が入っている場合は **FALSE** を返します。

### **基本構文**

```excel formula  theme={"theme":{"light":"github-light","dark":"github-dark"}}
ISBLANK(値)
```

* **値**：判定したいセルや式。

### **例**

#### **例 1：空のセルを判定する**

\[フィールド 1] の最初の行に何も入力されていないとします。

```excel formula  theme={"theme":{"light":"github-light","dark":"github-dark"}}
=ISBLANK([字段1])
```

結果は **TRUE** になります。

#### **例 2：テキストを含むセルを判定する**

\[フィールド 1] の最初の行に **"Hello"** というテキストが入っているとします。

```excel formula  theme={"theme":{"light":"github-light","dark":"github-dark"}}
=ISBLANK([字段1])
```

結果は **FALSE** になります。
