I'm looking for a formula that will return Yes or No value if the date in one cells falls within date range contained in 2 other cells. Example provided in attached image. Yes/No value returned in cell C2 determined if date contained in Cell C1 falls within date range contained in Cells A2 and B2
**Yes result in C3 is incorrect and should be a "No"
=IF(AND(C$1>=A2,C$1<=B2),"Yes","No")
– BigBen