• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

How to I do this formula to work

cowgirl

New Member
=IF(AND(I1>="09/01"+0,I1<="11/30"+0)I1>=12/30<=02/29+0)"8.0%","7.5%","9.0%")
I am trying to do a formula that has three different out comes
if I1 (date) is March thru August the % is 7.5
If I1 (date) is Sept thru October the % is 8.0
If I1 (date) is Nov thru Feb the % is 9.0
Can any one help
 
If year does not matter
how about

=IF(AND(MONTH(I1)>=3,MONTH(I1)<=8), 0.075, IF(AND(MONTH(I1)>=9,MONTH(I1)<=10),0.08,0.09))
 
Back
Top