Looking for help on what correct excel formula to use in my situation. I think it should be an if statement but I can't get the correct amount to populate.
What I want to do is sum a range of numbers. If that range of numbers falls in between a defined set, I want to do a calculation. Below is an example
Table:
0-15 0%
15-20 10%
20-25 20%
Range:
Jan - 7
Feb - 8
Mar - 9
I'm trying to build a formula that would bring back 4.8 as the answer. Based on this example, I'm summing the three months (24) and multiplying by 20% from the table to get 4.8.
My attempt at the fomula (that isn't working) is this: =IF(SUM(D6:D8)<15,0,IF(SUM(D6:D8)>15<20,SUM(D6:D8)*0.1,IF(SUM(D6:D8)>20<25,SUM(D6:D8)*0.2,NONE)))
Please help!
What I want to do is sum a range of numbers. If that range of numbers falls in between a defined set, I want to do a calculation. Below is an example
Table:
0-15 0%
15-20 10%
20-25 20%
Range:
Jan - 7
Feb - 8
Mar - 9
I'm trying to build a formula that would bring back 4.8 as the answer. Based on this example, I'm summing the three months (24) and multiplying by 20% from the table to get 4.8.
My attempt at the fomula (that isn't working) is this: =IF(SUM(D6:D8)<15,0,IF(SUM(D6:D8)>15<20,SUM(D6:D8)*0.1,IF(SUM(D6:D8)>20<25,SUM(D6:D8)*0.2,NONE)))
Please help!