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-07-30_12h26_57.png

操作例

2024-07-30_12h29_40.gif

計算式プラグイン設定

  • テーブルに合計行が無い場合は、行を追加
  • 最終行なら、合計計算

2024-07-30_12h30_51.png

.js
OPTION: 循環参照を許可

// テーブル SUBTABLE (editable)
IF(CONTAINS(担当者番号,"99 合計"),0,COUNTROW(テーブル)+1)

// テーブル.担当者番号 SINGLE_LINE_TEXT (editable)
IFS(
  COUNTROW(テーブル)=ROWNO(テーブル)+1,"99 合計",
  担当者番号="99 合計","",
  担当者番号,担当者番号
)

// テーブル.4月 NUMBER (editable)
IFS(担当者番号="99 合計",
  SUMIF(担当者番号!="99 合計",),
  担当者番号="","",
  
)

// テーブル.5月 NUMBER (editable)
IFS(担当者番号="99 合計",
  SUMIF(担当者番号!="99 合計",),
  担当者番号="","",
  
)

項目検証プラグイン設定

合計行なら、入力不可

2024-07-30_12h33_09.png

ちょっと便利なプラグイン設定

2024-07-30_12h34_23.png

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?