Excel lookup list of date in sheet,

34 Views Asked by At

I have 2 sheet in excel and Second sheet have list of date. We need to lookup all the list of date and compare than today() date. Take first greater than date and get the same row another column. Tried below this,

=MATCH(MIN(IF(Sheet3!B2:B67>TODAY(),"",FALSE)),Sheet3!G2:G67,-1)
1

There are 1 best solutions below

0
Harun24hr On BEST ANSWER

Try below formula

 =XLOOKUP(TODAY(),Sheet3!$B$1:$B$15,Sheet3!$C$1:$C$15,,1)