Increase a Number by a Percentage when the New Sale Price Increases a fee

razzandy

Active Member
Joined
Jun 26, 2002
Messages
399
Office Version
  1. 2007
Platform
  1. Windows
Hi Guys

So, I need a formula or a VBA method to Increase a Sale Prices by 25% based on cost + 25% but when the sale price goes up a fee price also goes up so I end up with a circular reference!

Lets say:
Cost In E2, Fee in G2 and Postage Cost in i2. In J2 I want to add the costs up and add 25% which is easy
Excel Formula:
=SUM(E2,G2,I2)*(1+0.25)
the problem is the new Calculated Higher Sale Price now incurs a higher fee which which is not being included if you can understand what I am saying?!?!?!? 😵

P.S. I work the fee out with this formula:
Excel Formula:
=ROUND(F2*0.138,2)+0.05

Thanks in advance
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
It would be helpful if you could provide some sample data and expected results.
 
Upvote 0
Hi @dreid1011 thanks for your response. (y)

Will a screenshot do? As you can see to get to my 25% Margin I have to just repeatedly, manually increase the sale price in f2 to achieve this but I wanted to add an additional formula that could be pasted down my list of products to produce my new sale price based on cost(s) + 25%. The stumbling block is with a new higher sale price comes a higher eBay fee!

1723828865051.png
 
Upvote 0
What is the expected result for that sample data?

Also, I see you are using Excel 2007 and I am not very handy with the limited functions available in that version, so hopefully someone else can provide a solution. I do have something I think is working in 365, but without knowing what you expect, I cannot say for sure, and likely does not matter in any case.
 
Upvote 0
I want it to give me the sale price based a 25% Markup based on the costs + 25% but as said before the eBay cost changes based on that sales price. (y)
 
Upvote 0
@razzandy Forgive me because I am perhaps not fully understanding.
If you are ncluding the variable Etsy fee within your calculation for price then you will inevitably have a circular reference issue because the Etsy fee is based upon that price.
Is it not possible for you to have the Etsy fee kept separate?
 
Upvote 0
@razzandy Forgive me because I am perhaps not fully understanding.
If you are ncluding the variable Etsy fee within your calculation for price then you will inevitably have a circular reference issue because the Etsy fee is based upon that price.
Is it not possible for you to have the Etsy fee kept separate?
You've hit the nail on the head @Snakehips the eBay fee is exactly as you say variable and the circular reference is where I ended up which resulted in me asking for help on here. I can't think of any way to keep the eBay fee separate because as you have pointed out it depends on the sale price. I am considering a VBA method where it increases the sale price in increments until the margin hits 25%. Maybe this is the only way, what do you think?

Thanks for your input (y)
 
Upvote 0
So, here is what I have up to now:

Formula is in Z2 and AA1 contains the 25% value:
Excel Formula:
=SUM(E2,G2,I2)/(1-AA$1)*(1+0.2)
in addition to this I added a circular reference formula in F2 (Sale Price)
Excel Formula:
=Z2
and I followed the help file that pops up with the circular reference error which recommends turning on iterations as below:

Can anybody foresee any issues with this?

1724174791762.png
 
Upvote 0
Is 25% a constant for your Margin?
Also, now that you have iterations on, what Sales Price / Etsy fee are you currently generating for :
Cost @ 1.2 and Postage @ 3.064
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,173
Members
451,543
Latest member
cesymcox

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