B
B
Blondinn2021-10-17 20:51:38
Google Sheets
Blondinn, 2021-10-17 20:51:38

How to display the maximum date value from a range?

There is a column with "Name" and a column "Date and time of registration". How to display the date and time of the last registration for each full name?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
G
Grigory Boev, 2021-10-18
@Blondinn

=МАКС(FILTER($B:$B;$A:$A=$A$2))
$A:$A = Full name
$B:$B = Date
Or you can do this:

=QUERY(QUERY(A:B;"SELECT A,MAX(B) WHERE A IS NOT NULL GROUP BY A";0);"SELECT * OFFSET 1";0)

Demo table

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question