1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Power Automate の「連続した承認」で承認者の数を動的に変える方法

Posted at

前提

  • SharePoint リストに項目が作成されたらフローをトリガーする。
  • SharePoint リストの「ユーザーまたはグループ」列で承認者を設定する。
  • 当該列は「複数の選択を許可」を はい に設定する。

スクリーンショット 2025-09-30 014134.png

フローの構成

1. 「選択 (Select)」アクション

目的:承認者を Approval Steps 形式の配列に変換する。

スクリーンショット 2025-09-30 014100.png

  • 元データ:項目が作成されたとき アクションの承認者列

  • マッピング:

    • キーassignedTo
    • :承認者の Email

これにより、以下のような配列が生成される:

[
  { "assignedTo": "user1@contoso.com" },
  { "assignedTo": "user2@contoso.com" }
]

2. 「開始して承認を待機 (Start and wait for an approval)」アクション

スクリーンショット 2025-09-30 014107.png

  • 承認の種類:連続した承認 (Sequential Approval)
  • Approval Steps:選択 アクションの出力を指定する。

ポイント

  • SharePoint リスト側で承認者を複数設定すると、その数に応じて自動的にステップが生成される。
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?