Formula for ebay price calcs.

Agrajag

New Member
Joined
Apr 4, 2006
Messages
47
I want to create a spreadsheet that will allow me to put in the price of an item on my two favorite online marketplaces and see what the actual cost will be to me on them. The issue is that they both have tiered pricing (that is that you pay the percentage on the amounts as you ramp up).

On site one the pricing is as follows:

8%+1c for items 0.01c to $49.99
5.5% for items $50.00 to $999.99
1.5% for items $1,000 and up.

On ebay the pricing is as follows (for items in the Other category):

12% for items 0.99 to $50.00
6% for items $50.01 to $1,000.00
2% for items $1,000.01 and up.

So, remember, the hard part is that an item selling for $100 would cost me 12% for the first $50 and then 6% for the last $50.

I see Column A having the price and Column B having the first site's fees with Column C being ebay's fees. I'll actually create several other columns for ebay's other pricing (different categories and top rated seller discounts) but the core of it needs a formula to deal with the above tiering which I don't know how to provide for in Excel. What I need to understand is what the two formulas for column B and C would look like.

Thanks.
 
Last edited:

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Quick question: What does the 8%+1c mean? Is it 8% plus one penny?

Here is a formula for Ebay (column C):
=IF($A1<=50,$A1*0.12,IF($A1<=1000,($A1-50)*6%+6,($A1-1000)*2%+63))
 
Upvote 0

Forum statistics

Threads
1,224,616
Messages
6,179,911
Members
452,949
Latest member
beartooth91

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