Margin/markup formula for Excel

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to insert a formula to calculate a percentage of margin/markup.
Example cost = $7.00 divided by 30 % = $10.00. My cost is 7.00, my sale price
is 10.00. Can anyone help with this formula?
 
Wardo said:
I am trying to insert a formula to calculate a percentage of margin/markup.
Example cost = $7.00 divided by 30 % = $10.00. My cost is 7.00, my sale price
is 10.00. Can anyone help with this formula?

There are two different measurements here.

Markup: =SP/CP % and
Margin: =(SP-CP)/CP %
 
Cost in A1, price in B1

markup is

=(B1-A1)/A1

or

=(B1/A1)-1

margin

=(B1-A1)/B1

or

=1-(A1/B1)


Regards,

Peo Sjoblom


Regards,

Peo Sjoblom
 
Back
Top