Find cost if you know sales price and margin %

landguytn

New Member
Joined
Dec 18, 2023
Messages
1
Office Version
  1. 2021
Platform
  1. Windows
Hello all. I'm looking for a simple calculation to find the original cost of an item if the Sales Price and Margin % are known.
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Margin = (Sell Price-cost)/Selling Price.

therefore

cost = 0-(margin * Selling Price - Selling price)

example. Selling Price in B1, Margin in C1 then cost formula would be =0-(B1*C1-B1)
 
Upvote 0
Copy the formula in C4 into B4 and add an equal sign (=) to the front.
Green cells are for your inputs; red cell for the calculation result.

1702922971855.png
 
Upvote 0
If your margin is just a number and not formatted as percentage, this should give you the cost.
Code:
B3/(100+B2)*100
B3 is the sale price and B2 is the margin expressed as 10 or 15 or 45.
 
Upvote 0

Forum statistics

Threads
1,215,072
Messages
6,122,968
Members
449,095
Latest member
Mr Hughes

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top