0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Excel】関数_基本1 メモ

Last updated at Posted at 2025-04-13

日付データから開始日と終了日を抽出する

1番古い日付を表示
=MIN(A1:A10)

日付表示にする場合は
=TEXT(MIN(A1:A10), "yyyy/mm/dd")
1番新しい日付を表示
=MAX(A1:A10)

日付表示にする場合は
=TEXT(MAX(A1:A10), "yyyy/mm/dd")

日付を表すシリアルデータは日付が古いほど値が小さいため、開始日(古データ)はmin、直近の新しいデータはmaxで抽出。

0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?