在日期数组中搜索 lowest/highest 值

Search for lowest/highest value in the date array

column C 中获取每个日期的最低值和最高值的最佳公式是什么?

结果需要填写 FG

Link: https://docs.google.com/spreadsheets/d/1IxLit5vOf9FIjEp4TOEWLFNoCB4yS5mYXXMXo2tvtiM/edit?usp=sharing

尝试:

=ARRAYFORMULA(QUERY({LEFT(A2:A; 10)*1\C2:C}; 
 "select Col1,min(Col2),max(Col2)
  where Col2 is not null
  group by Col1
  label Col1'date'"))