Greater than and less than

F

Farmer Ted

I want to create a formula that will show that an Date in Column B is between
91 and 61 days old (From today) that a yes or no will display

My Formula (which does not work) is
=IF((TODAY()-D2) (<91AND > 61),"Yes","No")

The Formual =IF ((Today()-d2) <61, "Yes","No") works.....but how do I create
a formual if both are true that it will display a YES OR if Not it will
display a NO
 
T

T. Valko

=IF((TODAY()-D2) (<91AND > 61),"Yes","No")

I'm not too good with date formulas but see if this does what you want...

=IF(AND(TODAY()-D2>61,TODAY()-D2<91),"Yes","No")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top