Home > OS >  IF Statement if it match range of data
IF Statement if it match range of data

Time:04-22

Dear all experts here,

How should I draft my IF Statement here if I am looking to label "Yes" and "No" if it match the date in Column B. enter image description here

CodePudding user response:

use:

=ARRAYFORMULA(IF((A2:A29>=B2)*(A2:A29<B3), "Yes", "No"))

enter image description here

  • Related