Hi, I have three individual statements that I am trying to put together. They all work individually, but when I combine them it returns #VALUE!. I am trying to calculate accrual rates for personal leave based on the number of years at the company.
Anyone know what I need to do to correct it?
=IF(AND(C5>=0,C5<5),5)
=IF(AND(C5>=5,C5<10),6.67)
=IF(C5>=10,8.355)
=(IF(AND(C2>=0,C2<5),5), IF(AND(C2>=5,C2<10),6.67), IF(C2>10,8.355)) --- this returns #VALUE!
Anyone know what I need to do to correct it?
=IF(AND(C5>=0,C5<5),5)
=IF(AND(C5>=5,C5<10),6.67)
=IF(C5>=10,8.355)
=(IF(AND(C2>=0,C2<5),5), IF(AND(C2>=5,C2<10),6.67), IF(C2>10,8.355)) --- this returns #VALUE!