Forum Discussion
Hogstad_Raadgivning
Nov 23, 2022Iron Contributor
Filter using dynamic array as test citeria.
Hi, The goal here is to find the lowest date in a list, using a unique list for match: Tested with =MIN(FILTER($D$3:$D$32;$C$3:$C$32=G3#;"")) which gives an error. =MIN(FILTER($D$3:$D$32...
- Nov 23, 2022
=BYROW(G3#,LAMBDA(row,MIN(FILTER(D3:D32,C3:C32=row))))This formula refers to G3# and spills the results in my sheet.
Patrick2788
Nov 23, 2022Silver Contributor
VLOOKUP with the date sorted in ascending order:
=LET(data,SORT(C3:D32,2,1),VLOOKUP(G3#,data,2,0))