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?

スプレッドシートで時間毎のキャスト人数を把握したい。

Last updated at Posted at 2024-07-16

条件

1.現在時刻とシフトの時間が一致かつ
2.各担当にOKがあればカウントする

現在時刻を表示するために下記の関数をセルに入力。

=NOW()

CONTIFS関数を使用してキャストの人数を表示。
表示する範囲を時間毎に変更するため、FILTER関数で範囲を指定。
時間はHOUR関数で時間の部分だけを取得。(12:00の12だけを取得)

=COUNTIFS(FILTER($G$2:$J$6,(HOUR($G$2:$J$2))=(HOUR($A$7))), "キャスト",FILTER($B$2:$E$6,$B$2:$E$2=B2), "OK")

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?