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 計算式プラグイン レコード再利用時テーブル最終行のみ設定

Posted at

計算式プラグインで、レコード再利用時テーブル行に最終行のみを設定する例です。

概要

計算式プラグインを使って、レコード再利用時に特定のテーブル行のみを設定することが出来ます。
レコードを再利用するアクション機能でも適用されますので、再利用する項目を指定できます。

※テーブル内にルックアップ項目が無いこと

2024-08-03_10h02_17.png

操作例

2024-08-03_10h11_11.gif

計算式プラグイン設定

循環参照を許可をチェックします。
レコード追加イベント時に、テーブル最終行のみセットします。
TPFILTER 関数で、特定行のみ選択することが出来ます。

2024-08-03_10h15_17.png

.js
OPTION: 循環参照を許可

// テーブル SUBTABLE (editable)
IF(IN(EV_INFO("type"),"app.record.create.show","mobile.app.record.create.show"),
  TABLE_SORT(テーブル,
    TPFILTER(COUNTROW(テーブル)=(ROWNO(テーブル)+1))
  )
)
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?