Hi
I am trying to use this formula but it is not allowing me.
Any help much appreciated.Rich (BB code):=if(or(AT2<DATE(2017,7,24),"settled",if(or(BE2<=DATE(2018,2,28),"settled","not settled"))
Thanks
=IF(OR(AT2 < DATE(2017,7,24), BE2 <= DATE(2018,2,28)), "settled", "not settled")
Then I think what you have here is just a nested IF. You do not need any OR statements.What I am trying to do is say that if AT meets that criteria then return "settled" otherwise go to BE and then return based on that criteria.
[COLOR=#574123]=if(AT2 [/COLOR][B]< date(2017,7,24),"settled",if(be2 [B]<= date(2018,2,28),"settled","not settled?[COLOR=#ff0000]"[/COLOR]))[/B][/B]
[COLOR=#333333]=if(or(AT2[/COLOR][B]<date(2017,7,24),"settled",if(or(be2[B]<=date(2018,2,28),"settled","not settled?[COLOR=#ff0000]"[/COLOR]))[/B][/B]
[COLOR=#333333]=if(AT2[/COLOR][B]<date(2017,7,24),"settled",if(be2[B]<=date(2018,2,28),"settled","not settled?[COLOR=#ff0000]"[/COLOR]))[/B][/B]
I am curious though. If both "checks" are to return the same thing ("Settled"), then the OR statement dreid1011 should work just as well as the Nested If.many thanks all but I still have issues even if I use the formula suggested by dreid1011.
=IF(OR(AT2<DATE(2017,7,24),BE2<=DATE(2018,2,28)),"Settled","Not Settled")
What I am trying to do is say that if AT meets that criteria then return "settled" otherwise go to BE and then return based on that criteria.