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?

More than 1 year has passed since last update.

rex0220 計算式プラグイン テーブル項目の値を集計・取得

Last updated at Posted at 2022-10-21

計算式プラグインで、テーブルの集計や特定行の値を取得を行ってみます。
SUMIF, FIRSTIF 関数で簡単に集計できます。

※集計結果をテーブルに設定する場合は、rex0220 計算式プラグイン テーブル集計

概要

テーブルのドロップダウン毎に集計

2022-10-21_18h57_24.png

計算式プラグインの設定

SUMIF, FIRSTIF 等の集計関数で計算できます。

  • 合計
    • SUM(数値T)
  • 合計SAMPLE1
    • SUMIF(ドロップダウン="sample1",数値T)
  • 合計SAMPLE2
    • SUMIF(ドロップダウン="sample2",数値T)
  • 最初の有効な値
    • FIRST(数値T)
  • 最初のSAMPL1
    • FIRSTIF(ドロップダウン="sample1",数値T)
  • 最初のSAMPL2
    • FIRSTIF(ドロップダウン="sample2",数値T)
  • 最後の有効な値
    • LAST(数値T)
  • 最後のSAMPL1
    • LASTIF(ドロップダウン="sample1",数値T)
  • 最後のSAMPL2
    • LASTIF(ドロップダウン="sample2",数値T)

2022-10-21_19h01_34.png

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?