Calculating Sales price by Entering Gross Profit

S

Spawnof

I am trying to calculate Gross Profit on a worksheet using the
following

column a : I enter cost of goods
column b: I enter required profit margin as percent
column c: excel calculates the sale price

Any help much appreciated
 
A

Alan

Formula in C1 where A1 is Cost of Goods & B1 is Profit Margin.

=A1*(100+B1)/100

Or use this if you want to set the same profit margin for all goods:

=A1*(100+$B$1)/100


Regards,

Alan
 
S

Spawnof

Formula in C1 where A1 is Cost of Goods & B1 is Profit Margin.

=A1*(100+B1)/100

Or use this if you want to set the same profit margin for all goods:

=A1*(100+$B$1)/100

Regards,

Alan

Many thanks!
 
S

Spawnof

Formula in C1 where A1 is Cost of Goods & B1 is Profit Margin.

=A1*(100+B1)/100

Or use this if you want to set the same profit margin for all goods:

=A1*(100+$B$1)/100

Regards,

Alan

Actually this does not do what I want it to do Gross profit is not the
same as a percent the formula is. The formula for GP is:

profit / selling price * 100
 
A

Alan

Sorry, I don't think straight after midnight, lol. I think this is what you
are looking for:

=(A1/(1-B1)) ' Each item has it's own margin

=(A1/(1-$B1)) ' If margin is constant across all goods.

Regards,

Alan
 
A

Alan

Ooops, that second formula should be

=(A1/(1-$B$1)) If margin is constant across all goods.

Regards,

Alan
 
S

Spawnof

Sorry, I don't think straight after midnight, lol. I think this is what you
are looking for:

=(A1/(1-B1)) ' Each item has it's own margin

=(A1/(1-$B1)) ' If margin is constant across all goods.

Regards,

Alan

This does still not appear to work.

e.g The sale price of 150 (cost) at 33.33 margin (%) is 225

when I use your formula it doesn't equate to this - comes out as a
minus figure in fact?
 
N

NickHK

Well yes, if you are using actual % values.
=A1/(1-B1/100)
or
=100*A1/(100-B1)

NickHK
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top