+ Reply to Thread
Results 1 to 21 of 21

Reverse calculation for profit

  1. #1
    Forum Contributor
    Join Date
    03-18-2010
    Location
    FL
    MS-Off Ver
    Excel 2016
    Posts
    147

    Reverse calculation for profit

    Hello,

    I need a formula where I can say to Excel in a cell I want a profit of $2 for example and it'll calculate the item price I need to set to the product.

    Thank you all in advance!

    Dan.

  2. #2
    Forum Expert teylyn's Avatar
    Join Date
    10-28-2008
    Location
    New Zealand
    MS-Off Ver
    Excel 365 Insider Fast
    Posts
    11,372

    Re: Reverse calculation for profit

    So, you have a buy price in A1 and you want to make a profit of $2 when on-selling.

    The formula will be your buy price plus the $2 profit.

    =A1+2

    cheers

  3. #3
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: Reverse calculation for profit

    Just add cost price to profit for selling price.
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

  4. #4
    Registered User
    Join Date
    06-05-2010
    Location
    Fl, Usa
    MS-Off Ver
    Excel 2001
    Posts
    19

    Re: Reverse calculation for profit

    If you'd like to use percentages instead try these formulas:

    Mark up formula:
    Please Login or Register  to view this content.
    Selling Price=Cost+(Cost multiplied by Percent of Profit)

    Example;
    Cost-----% of profit-----Selling Price
    $800.00----10.00%-------$880.00

    Or

    A mark up which gives profit on the sale price formula:
    Please Login or Register  to view this content.
    Selling price=Cost divided by (100% minus Percent of profit)

    Example:
    Cost------% of profit-----Selling Price
    $800.00-----10.00%------$888.89
    Last edited by spreadcore; 06-06-2010 at 01:14 PM.

  5. #5
    Forum Contributor
    Join Date
    03-18-2010
    Location
    FL
    MS-Off Ver
    Excel 2016
    Posts
    147

    Re: Reverse calculation for profit

    Excellent, I thought it'll be much complicated than this. But I forget to tell you that my selling price is based on a fee calculated by a percentage of the selling price, I sell on Ebay, so now it's giving me a circular reference warning. So the selling price needs to be my buy cost + shipping cost + eBay fee + $2 profit for example. Any idea?

    Thanks!!!

    Quote Originally Posted by teylyn View Post
    So, you have a buy price in A1 and you want to make a profit of $2 when on-selling.

    The formula will be your buy price plus the $2 profit.

    =A1+2

    cheers

  6. #6
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: Reverse calculation for profit

    Just have a column for each component, then in E

    SUM(A1:D1)

  7. #7
    Forum Contributor
    Join Date
    03-18-2010
    Location
    FL
    MS-Off Ver
    Excel 2016
    Posts
    147

    Re: Reverse calculation for profit

    Yes, the thing is that one of the columns, where the fee is, is calculated on the item price. So I need it's to insert item cost + shipping cost and margin for example $2, then the excel should calculate the item price based on item cost + shipping cost + margin + fee. Do I'm clear?
    Last edited by teylyn; 06-16-2010 at 05:50 AM. Reason: removed spurious quote

  8. #8
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: Reverse calculation for profit

    You haven't provided enough information for anyone to help. What's the fee schedule?
    Entia non sunt multiplicanda sine necessitate

  9. #9
    Forum Contributor
    Join Date
    03-18-2010
    Location
    FL
    MS-Off Ver
    Excel 2016
    Posts
    147

    Re: Reverse calculation for profit

    Sorry. The fee is the eBay fees, I already have them calculated, this is ok. The fee is based on the item price. Let's say the price it's $100, the fee is for example 10%. I have a column that calculate it based on the price. What I need it's just to add the profit I want and it'll give me the price. What I do now it's to enter manually the price. Thanks a lot.
    Last edited by teylyn; 06-16-2010 at 05:50 AM. Reason: removed spurious quote

  10. #10
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: Reverse calculation for profit

    The fee is based on the price, the price is based on the fee. No one can help you compute the PRICE without knowing the fee SCHEDULE.

  11. #11
    Forum Contributor
    Join Date
    03-18-2010
    Location
    FL
    MS-Off Ver
    Excel 2016
    Posts
    147

    Re: Reverse calculation for profit

    This is one of the formulas, it's depend on the category you sell.

    =ROUND(E2*2%+MIN(E2,1000)*(5%-2%)+MIN(E2,50)*(8%-5%),2)

    E2 it's the price.
    Last edited by teylyn; 06-16-2010 at 05:50 AM. Reason: removed spurious quote

  12. #12
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: Reverse calculation for profit

    If P is the profit percentage (e.g., 0.2, or 20%), then the formula for sell price is

    =Cost / (1-P) / (1- SUMPRODUCT( (Cost / (1-P)>{0,50,1000}) * (Cost / (1-P)-{0,50,1000} ) * {8,-3,-3}/100) / Cost * (1-P) )

    For example,

    Please Login or Register  to view this content.
    It's inexact because of the sliding scale.
    Last edited by shg; 06-11-2010 at 07:07 PM.

  13. #13
    Forum Contributor
    Join Date
    03-18-2010
    Location
    FL
    MS-Off Ver
    Excel 2016
    Posts
    147

    Re: Reverse calculation for profit

    Many thanks. I'm not sure if I insert right the formula but I'm getting a negative number for the sell price. What I'm doing wrong? I attached the excel. Thanks a lot!
    Attached Files Attached Files
    Last edited by teylyn; 06-16-2010 at 05:51 AM. Reason: removed spurious quote

  14. #14
    Forum Expert teylyn's Avatar
    Join Date
    10-28-2008
    Location
    New Zealand
    MS-Off Ver
    Excel 365 Insider Fast
    Posts
    11,372

    Re: Reverse calculation for profit

    dandi, please stop quoting whole posts. It's just clutter.

  15. #15
    Forum Contributor
    Join Date
    03-18-2010
    Location
    FL
    MS-Off Ver
    Excel 2016
    Posts
    147

    Re: Reverse calculation for profit

    Sorry, now I just saw the reply icon, I'm new on forums..

  16. #16
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: Reverse calculation for profit

    If P is the profit percentage (e.g., 0.2, or 20%), then the formula for sell price is ...
    Profit is a percentage of revenue, which means it ranges from 0 to 0.999... Try setting it to 20%

  17. #17
    Forum Contributor
    Join Date
    03-18-2010
    Location
    FL
    MS-Off Ver
    Excel 2016
    Posts
    147

    Re: Reverse calculation for profit

    Done, thanks. Working with a percentage it's fine. How can I set a profit of $2?. Can I?

  18. #18
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: Reverse calculation for profit

    Enter the profit amount someplace, compute the percentage profit, and then use the percentage in the formula:

    p% = 2 / (10 + 2) = 16.7%

  19. #19
    Forum Contributor
    Join Date
    03-18-2010
    Location
    FL
    MS-Off Ver
    Excel 2016
    Posts
    147

    Re: Reverse calculation for profit

    Thanks. I'm getting better but is not showing me the correct amount, I assume I'm doing something wrong...This is what I did:

    =A2 / (1-C2) / (1- SUMPRODUCT( (A2 / (1-C2)>{0,50,1000}) * (A2 / (1-C2)-{0,50,1000} ) * {8,-3,-3}/100) / A2 * (1-C2) )

    A2= cost.
    C2= profit percentage I want.

    I need to add an additional to the original formula and I try to add it to yours without success. The final formula I have it's the following:

    =ROUND(E8*2%+MIN(E8,1000)*(5%-2%)+MIN(E8,50)*(8%-5%),2)+(E8*3.4%)+0.3+0.05+(E8*0.9%)

    E8 it's the sale price. In other words. I need to add to the fee (3.4% +0.3 + 0.05) + (0.9%).

    Thanks a lot! I much appreciate your help.

  20. #20
    Forum Contributor
    Join Date
    03-18-2010
    Location
    FL
    MS-Off Ver
    Excel 2016
    Posts
    147

    Re: Reverse calculation for profit

    Help please .

  21. #21
    Forum Contributor
    Join Date
    03-18-2010
    Location
    FL
    MS-Off Ver
    Excel 2016
    Posts
    147

    Re: Reverse calculation for profit

    Hi All!

    I need your help regarding this issue. I uploaded a file I did, it's working fine, but I'm missing the most important thing that will help me to make this more automatically when adding a lot of SKU's. I need to reverse profit. In the file you can see 2 spreadsheets, one for eBay and one for Amazon. In every category I sell I pay different fees. I have inserted comments on every sell to indicate what is. For every category the fees are correct, I just want to insert in the "profit I want" cell the amount I want have after all the fees.

    Many thanks!!!
    Attached Files Attached Files

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1