SOLVED

IF AND OR formula regarding Start Dates and End Dates

Brass Contributor

Hi everyone,

 

I want to do a year on year analysis and only include accounts which:

 

If Date Closed (column A) OR Date Deferred (column B) is between Start Date and End Date in 2019 OR 2020, then column C must say "INCLUDE"

 

Please see excel attached, hugely appreciate your response in advance!

 

Thanks

 

Jenny

5 Replies
best response confirmed by JennySommet (Brass Contributor)
Solution

@JennySommet 
Try if this works for you 

=IF(OR(AND(A2>=$F$2,A2<=$F$3),AND(A2>=$G$2,A2<=$G$3),AND(B2>=$F$2,B2<=$F$3),AND(B2>=$G$2,B2<=$G$3)),"INCLUDE","")
I have included both the start and end dates in the formula

Amazing! thank you so much and for super quick response!

@JennySommet 

Another variant

=IF( (MEDIAN(A2,$F$2:$F$3)=A2)+(MEDIAN(A2,$G$2:$G$3)=A2),"INCLUDE","")
This is fantastic - thank you!
1 best response

Accepted Solutions
best response confirmed by JennySommet (Brass Contributor)
Solution

@JennySommet 
Try if this works for you 

=IF(OR(AND(A2>=$F$2,A2<=$F$3),AND(A2>=$G$2,A2<=$G$3),AND(B2>=$F$2,B2<=$F$3),AND(B2>=$G$2,B2<=$G$3)),"INCLUDE","")
I have included both the start and end dates in the formula

View solution in original post