0
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?

More than 1 year has passed since last update.

rex0220 関連レコード集計プラグイン 組織選択で集計

Posted at

関連レコード集計プラグインを使って、組織単位に集計する例です。
組織選択項目を集計キーに使用する場合、SEL_CODE で組織コードを取得する必要があります。

概要

アプリのレコード追加・更新時に、組織ごとにレコード集計を行います。

2023-06-01_19h56_54.png

アプリ設定

組織ごとに集計を行う場合は、組織選択項目を必須にする必要があります。
※kintone REST API の仕様により、組織選択が空のレコードを取得できないため。

2023-06-01_20h00_42.png

関連レコード集計プラグインの設定

集計先アプリを選択して、対象アプリ条件・集計条件・集計項目等を設定します。

2023-06-01_20h00_01.png

対象アプリ条件

組織選択の条件値には、組織コードが必要なため、SEL_CODE 関数を指定します。

  • 条件値:SEL_CODE(組織選択,"array")
    2023-06-01_20h05_24.png

集計条件

こちらも組織選択の条件値には、組織コードが必要なため、SEL_CODE 関数を指定します。

  • 条件値:SEL_CODE(組織選択,"array")
    2023-06-01_20h08_16.png

集計項目

集計キーになる組織コードの設定は、SET_CODE, SEL_CODE 関数を指定します。

組織選択の項目(計算式):

.js
// 組織選択
SET_CODE(
  SEL_CODE(組織選択,"array")
)

2023-06-01_20h09_07.png

0
0
6

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
0
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?