1 Answers

2
votes

try:

=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'"))

0