Price list markup %

PEACHYDAR

New Member
Joined
Apr 1, 2011
Messages
3
:)HI

I have a price list I use at work, and I always need to know the mark up for billing purposes. Is there a more accurate way of calculating this? I have to use a -1 to display the % correctly. I would have enclosed a snap shot of my screen I had at work today so show you the formula, but I can't find an icon to do that! Any advice is appreciated!

dar
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Welcome to MrExcel!

More accurate than what? Exactly how are you doing it now? Formula?

My signature block below contains 3 methods for posting small screen shots. Test them in the Test Here forum. That way, if something goes wrong, you won’t be messing up a main forum.
 
Upvote 0
thanks for the reply! I could not figure out how to inset a .jpg so I put it in a small video on youtube.....

http://www.youtube.com/watch?v=8PqzKhcvd-o

anyway, I did a formula that divides the list price by our cost and then had to subtract 1 to get the correct % to be displayed.

I just wanted to know if I was doing this correctly, and if there was a better way to do it!

dar
 
Upvote 0
That formula looks correct to me (though you don't need the '+' sign in the formula).
 
Upvote 0
Here is another option that gives you the same result. (top example).. see below for details on second example.
Book1
BCDEF
5MarkupPercentageRetailCostMUP
6RD-20HighEfficiency3,595.003,055.7517.65%
7TestItem100.0050.00100.00%
8
9
10GrossProfitMarginPercentageRetailCostGPM
11RD-20HighEfficiency3,595.003,055.7515.00%
12TestItem100.0050.0050.00%
Sheet1


Your method gives you a markup percentage. I took the liberty of adding another percentage option for you to consider. The second option is the gross profit margin percentage. The basic difference is a markup is a percentage of cost and the gross profit margin is a percentage of the sale price. One advantage to using gross profit margin is when offering discounts. Using my example item that retails for 100.00 and costs 50.00 you will see that the markup is 100%. Your item cost 50.00 and you marked it up 100% which gives you 100.00 retail. That same item has a 50% gross profit margin meaning that 50% of the sale price is your gross profit margin. Now, it you were to close out the item and only wanted to get your cost out of it, what discount percentage would you give? 50% right? If you use the GPM, you will know exactly the percentage you can give.

You may know all of this and if so, I apologize. This just brought some memories back when I used to work in retail 20 years ago.

Hope this helps.
 
Upvote 0
If your concern was only appearances, you could use a custom function, but your way is the best way IMO:

=MyPCT(A1,B1)

Code:
Function MyPCT(Retail As Long, Wholesale As Long)
    MyPCT = Retail / Wholesale - 1
End Function
 
Last edited:
Upvote 0
:)

thanks so much for all the replies! I will certainly review my price list and I just might add the GPM column! Thanks so much!

dar
 
Upvote 0

Forum statistics

Threads
1,224,609
Messages
6,179,876
Members
452,949
Latest member
Dupuhini

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