This is the formula I am using in my spreadsheet. The column the formula is looking at does include zeros as a value, but the formula as written includes the blank cells as a zero, which it should not. I need to exclude those.
Here is the formula:
=IF(AND(I3>=0,I3<=5),"<=5%",IF(AND(I3>=6,I3<=10),"6-10%",IF(AND(I3>=11,I3<=25),"11-25%",IF(AND(I3>=26,I3<=50),"26-50%",IF(AND(I3>=51,I3<=75),"51-75%",IF(I3>75,">75",""))))))
How do I add to this to exclude the blank cells
Thanks.
Here is the formula:
=IF(AND(I3>=0,I3<=5),"<=5%",IF(AND(I3>=6,I3<=10),"6-10%",IF(AND(I3>=11,I3<=25),"11-25%",IF(AND(I3>=26,I3<=50),"26-50%",IF(AND(I3>=51,I3<=75),"51-75%",IF(I3>75,">75",""))))))
How do I add to this to exclude the blank cells
Thanks.