Calculates gross profit margin, cost and selling price.
Formula: 100 * (sell - cost) / sell
cost: The original cost.
sell: The selling price.
For a cost of 30 and a selling price of 40, calculate the margin
Value | Keystrokes | Display | Description |
---|---|---|---|
30 | cost | 30.00 | Stores the cost value. |
40 | sell | 40.00 | Stores the sell value. |
margin | 25.00 | Calculates margin. |
Find the selling price for a 33.33% margin.
These keystrokes assume the values from example 1.
Value | Keystrokes | Display | Description |
---|---|---|---|
33.33 | margin | 33.33 | Stores the margin value. |
sell | 45.00 | Calculates the selling price. |