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

# 財務諸表

> 試算表、損益計算書、貸借対照表、キャッシュフロー計算書をリアルタイムで生成します。

# 財務諸表

limの仕訳データからリアルタイムに財務諸表を生成できます。すべてのレポートは最新の仕訳を反映しています。

## 試算表（Trial Balance）

```bash theme={null}
lim reports tb --from 2026-04-01 --to 2027-03-31
```

```
試算表 (2026-04-01 ~ 2027-03-31)
────────────────────────────────────────────────
勘定科目             借方        貸方
────────────────────────────────────────────────
現金                150,000
普通預金          2,400,000
売掛金              550,000
通信費              120,000
給料手当          1,800,000
地代家賃          2,400,000
未払金                          330,000
売上高                        7,200,000
資本金                        1,000,000
────────────────────────────────────────────────
合計              7,420,000    8,530,000
```

## 損益計算書（P\&L）

```bash theme={null}
lim reports pl --from 2026-04-01 --to 2027-03-31
```

```
損益計算書 (2026-04-01 ~ 2027-03-31)
────────────────────────────────────────
売上高                      7,200,000
売上原価                    2,100,000
────────────────────────────────────────
売上総利益                  5,100,000
  給料手当      1,800,000
  地代家賃      2,400,000
  通信費          120,000
  販管費計                  4,320,000
────────────────────────────────────────
営業利益                      780,000
```

## 貸借対照表（Balance Sheet）

```bash theme={null}
lim reports bs --date 2027-03-31
```

## キャッシュフロー計算書

```bash theme={null}
lim reports cf --from 2026-04-01 --to 2027-03-31
```

## レポートオプション

### 出力フォーマット

```bash theme={null}
# CSV出力
lim reports pl --format csv > pl.csv

# JSON出力（API連携向け）
lim reports pl --format json

# PDF出力
lim reports pl --format pdf --output pl.pdf
```

### 比較レポート

```bash theme={null}
# 前年同期比較
lim reports pl --compare previous-year

# 予算比較
lim reports pl --compare budget

# 月次推移
lim reports pl --monthly
```

### フィルタリング

```bash theme={null}
# 部門別
lim reports pl --label department:engineering

# プロジェクト別
lim reports pl --label project:product-a
```

<Tip>
  `--format json` で出力すれば、AI
  Agentが財務データをプログラムで処理できます。MCPサーバー経由でも同じデータにアクセス可能です。
</Tip>

## e-Tax・勘定科目内訳明細書の出力

```bash theme={null}
# e-Tax XML出力
lim export etax --from 2026-04-01 --to 2027-03-31

# 勘定科目内訳明細書の出力
lim export account-details --from 2026-04-01 --to 2027-03-31
```

## 資金繰り予測（Cash Runway）

```bash theme={null}
lim dashboard runway
```

```
Cash Runway Analysis
────────────────────────────────────────
Current cash:        ¥2,550,000
Monthly burn rate:   ¥360,000
Runway:              7.1 months
```

## 次のステップ

<CardGroup cols={2}>
  <Card title="消費税・税務申告" icon="file-invoice" href="/ja/guides/tax-filing">
    消費税の集計とe-Tax出力。
  </Card>

  <Card title="シナリオ分析" icon="code-branch" href="/ja/concepts/accounting-as-function">
    仮想仕訳で将来をシミュレーション。
  </Card>
</CardGroup>
