excelexcel-match

Excel lookup list of date in sheet,


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)

Solution

  • Try below formula

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