How to get a list of dates searched by criteria at the related table and then get the earliest.

There is a file

Sheets file link

There are two pages . At the page Lecture blocks at the column B - First lesson date, I need to have an earliest date from the related list of data from the page โ€œLessonsโ€. 

Is it possible to do some how at my app-sheet?

Solved Solved
0 2 130
1 ACCEPTED SOLUTION

try

 

MIN( //edited
 SELECT(
  Lessons[Date],
  [id_block] = [_THISROW].[id_block]
 )
)

 

 

 

 

View solution in original post

2 REPLIES 2

try

 

MIN( //edited
 SELECT(
  Lessons[Date],
  [id_block] = [_THISROW].[id_block]
 )
)

 

 

 

 

Thank you so much, it works.๐ŸŽ‰

Top Labels in this Space