M
Mike
I'm trying to build an excel sheet that
asks for the amount of lines you have A1
then takes that number of lines and applies one of 3 prices per line,
assigning a volume discount based on the number of lines you have
the rules are
for the first 10 lines, you pay $22 a line (B1)
for lines 11 - 20, you pay $18 a line (B2)
for line 20+ (up to 100) you pay $15 a line (B3)
but the prices need to stack
IE
10 lines: (10*22) - Total cost of $220 per month
11 lines: (10*22)+(1*18) - Total cost of $238 per month
20 lines: (10*22)+(10*18) - Total cost of $400 per month
21 lines: (10*22)+(10*18)+(1*15) - Total cost of $415 per month
I started with this formula
=IF(A1<11,A1*A2,IF(A1>10<21,A1*C2,A1*B2))
But then realised
A: I had a problem with the middle IF(A1>10<21... less than greater
than problem
B: That this formula was not going to be stacking the prices
Any help guys woould be much appreicated
asks for the amount of lines you have A1
then takes that number of lines and applies one of 3 prices per line,
assigning a volume discount based on the number of lines you have
the rules are
for the first 10 lines, you pay $22 a line (B1)
for lines 11 - 20, you pay $18 a line (B2)
for line 20+ (up to 100) you pay $15 a line (B3)
but the prices need to stack
IE
10 lines: (10*22) - Total cost of $220 per month
11 lines: (10*22)+(1*18) - Total cost of $238 per month
20 lines: (10*22)+(10*18) - Total cost of $400 per month
21 lines: (10*22)+(10*18)+(1*15) - Total cost of $415 per month
I started with this formula
=IF(A1<11,A1*A2,IF(A1>10<21,A1*C2,A1*B2))
But then realised
A: I had a problem with the middle IF(A1>10<21... less than greater
than problem
B: That this formula was not going to be stacking the prices
Any help guys woould be much appreicated