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?

More than 3 years have passed since last update.

[EXCEL関数]印を付けた列の値を取得する

Last updated at Posted at 2021-05-02

備忘メモ:INDEX関数+MATCH関数

説明

例のような表がある場合に左端と右端の●の位置を取得する関数。

関数の例

表の例

A B C D E F G H I J
1 4/1 4/2 4/3 4/4 4/5 4/6 4/7 4/8 4/9 4/10
2

左端の日付を取得する

=INDEX($A$1:$J$1,1,MATCH("●",$A2:$J2,0))

右端の日付を取得する

=INDEX(A1:J1,1,MATCH(1,INDEX(0/(A2:J2="●"),0,0),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?