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?

rex0220 計算式プラグイン テーブルの転記

Last updated at Posted at 2023-10-02

kintone で、テーブルAからテーブルBに転記したいというご要望がありましたので計算式プラグインを使って実装してみます。

概要

テーブルA で、対象に"チェック" された行をテーブルBに転記します。
※参考 rex0220 計算式プラグイン 複数テーブルの転記

2023-10-02_12h02_47.png

操作例

2023-10-02_12h08_06.gif

計算式プラグインの設定

テーブルBに、テーブルAから CSV 変換・テーブル変換を行っています。
テーブルB.区分BとテーブルB.ユーザー選択Bは、計算式なしで編集不可とします。

2023-10-02_12h10_35.png

.js
// テーブルB SUBTABLE
CSV_TVAL(
  OTCSV(テーブルA,
    TPFILTER(IN(対象,"チェック")),
    TPOUT(区分A,ユーザー選択A),
    TPLABEL("区分B","ユーザー選択B")
  )
)

// テーブルB.区分B DROP_DOWN
// テーブルB.ユーザー選択B USER_SELECT
0
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
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?