Rama Krishnan
Rama Krishnan

Reputation: 39

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)

Upvotes: 0

Views: 31

Answers (1)

Harun24hr
Harun24hr

Reputation: 36780

Try below formula

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

Upvotes: 1

Related Questions