View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
KMBOhio KMBOhio is offline
external usenet poster
 
Posts: 2
Default Connecting multiple IF statements into one formula

I am trying to create a formula using multiple IF statements. Individually
they all work but I don't know how to connect them in into one formula.
Basically, 4 possible date ranges that would each produce a different text
value. Any suggestions?

=IF(AND(I1=DATEVALUE("1-Jan"),I1<=DATEVALUE("31-Mar")),"Spring
Assortment")*IF(AND(I1=DATEVALUE("1-Apr"),I1<=DATEVALUE("30-Jun")),"Summer
Assortment")*IF(AND(I1=DATEVALUE("1-Jul"),I1<=DATEVALUE("30-Sep")),"Fall
Assortment")*IF(AND(I1=DATEVALUE("1-Oct"),I1<=DATEVALUE("31-Dec")),"Holiday
Assortment")