# PDF ドキュメントを結合する

Power Automate のフローで、指定した順序で複数の PDF ドキュメントを 1つに結合します。

このアクションを使用すると、複数の PDF ドキュメントを 1つの PDF ドキュメントに結合できます。ドキュメントはフィールドの順序、つまり 1st File Content から 10th の順に結合されます。

<PowerAutomateAction
  title="Merge PDF documents" caption="Merge PDF documents." fields={[ { label: "1st File Content", kind: "token", value: "1st File Content" }, { label: "2nd File Content", kind: "token", value: "2nd File Content" }, { label: "3rd File Content", placeholder: "The content of the 3rd PDF document" }, { label: "4th File Content", placeholder: "The content of the 4th PDF document" }, { label: "5th File Content", placeholder: "The content of the 5th PDF document" }, { label: "6th File Content", placeholder: "The content of the 6th PDF document", advanced: true }, { label: "7th File Content", placeholder: "The content of the 7th PDF document", advanced: true }, { label: "8th File Content", placeholder: "The content of the 8th PDF document", advanced: true }, { label: "9th File Content", placeholder: "The content of the 9th PDF document", advanced: true }, { label: "10th File Content", placeholder: "The content of the 10th PDF document", advanced: true }, ]} />

<Note>
  最初の 5つのファイル フィールドはデフォルトで表示されます。フィールド 6 から 10 までを表示するには、**Show advanced parameters** をオンにしてください。
</Note>

<Tip>
  ループや前のアクションから取得したドキュメントを結合したい場合は、代わりに[配列から PDF ドキュメントを結合する](/docs/power-automate/merge-pdf-documents-from-an-array)を使用してください。単一の配列を受け取り、10 ドキュメントの上限もありません。
</Tip>

## パラメーター

<ParamField name="1st to 10th File Content" type="File">
  結合する PDF ドキュメントの内容です。各フィールドは省略可能で、結合されたドキュメントはフィールドの順序を維持します。
</ParamField>

## レスポンス

<ParamField name="Merged PDF File Content" type="File">
  結合された PDF ドキュメントの内容です。フローの他のアクションへの入力として使用できます。
</ParamField>

## 関連アクション

<CardGroup cols={2}>

<Card title="配列から結合する" href="/docs/power-automate/merge-pdf-documents-from-an-array">
  ループから取得した配列のドキュメントを結合します。10 ファイルの上限はありません。
</Card>

<Card title="ページ数で分割" href="/docs/power-automate/split-pdf-by-page-count">
  結合したドキュメントを、固定サイズのパートに再分割します。
</Card>

<Card title="指定したページで分割" href="/docs/power-automate/split-pdf-at-page">
  ページの境界でドキュメントを 2つのパートに分割します。
</Card>

<Card title="ページを抽出" href="/docs/power-automate/extract-pages-from-pdf">
  結合する前に、一部のページのみを残します。
</Card>

</CardGroup>
