I'm having a bit of trouble creating a formula with too many variables, basically I need up to 5 variables.
If K19 is between 1-10 then add c47*28
If k19 is between 11-20 then add c47*20
If K19 is between 21-30 then add c47*10
If k19 is between 31-40 then add c47*5
if k19 is equal to/greater than 41 then = C47*0
I had:
=IF(AND(Sales!K19>=1,Sales!K19<=10),(Sales!C47*28), IF(AND(Sales!K19>=11,Sales!K19<=20),(Sales!C47*20), IF(AND(Sales!K19>=21,Sales!K19<=30),(Sales!C47*10),(C47*10))))
But it won't let me do more than 3 functions.
Any help is appreciated for a novice!
If K19 is between 1-10 then add c47*28
If k19 is between 11-20 then add c47*20
If K19 is between 21-30 then add c47*10
If k19 is between 31-40 then add c47*5
if k19 is equal to/greater than 41 then = C47*0
I had:
=IF(AND(Sales!K19>=1,Sales!K19<=10),(Sales!C47*28), IF(AND(Sales!K19>=11,Sales!K19<=20),(Sales!C47*20), IF(AND(Sales!K19>=21,Sales!K19<=30),(Sales!C47*10),(C47*10))))
But it won't let me do more than 3 functions.
Any help is appreciated for a novice!