Generate discount calculation sheet in Excel

Closed
Caramel - Oct 30, 2009 at 05:38 PM
 Caramel - Nov 25, 2009 at 03:09 PM
Hello,

I am looking for help for coding in Excel. I have a customer buying more than 50 books which will receive a discount of 35%. If less than 50 books then a discount of 20% will be given. How do I calculate this in Excel?

Thanks
Related:

2 responses

venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 811
Oct 30, 2009 at 09:07 PM
suppose A2 is the name of the book B2 is the notional price of the book and C2 is the no. of books purchased, D2 is the discounted price (row 1 is for column headins)
then type this formula in D2
=if(c2>50,B2*0.65,B2*0.80)

you can copy D2 down for other books. easy ways of copying D2 is to take the curor to the right bottom of D2 and it turns into + and click this +.(provided there is not gap row)
2
Well thank you for your explanation.
0