I need to make a guide for a sales manager letting him know what the lowest he is allowed to sell a product for based on the quantity of the sale.
Right now I can only think of a cumbersome equation, as follows:
(([sale price]-[cost])-([sale price]*0.05))*[sale quantity]=[profit], profit must be equal to or above 0.66*[sale quantity]
In order to effectively use this equation, the sales manager will have to guess what the lowest price is, run the equation, then see if it is equal to 0.66*[quantity]. Is there an equation that will allow him to find the sales price that will return a profit of exactly 0.66*[quantity]?
The equation I wrote basically says that a minimum of 66p per product must be made in order for a sale to go ahead, but I was trying to write an equation that gave him a higher margin if the sale quantity was small and a lower margin if the sale quantity was low. Any idea how I might do that?
– Wilf Jul 31 '17 at 12:01