+ Reply to Thread
Results 1 to 15 of 15

How to make percentages add up correctly

  1. #1
    Registered User
    Join Date
    09-03-2021
    Location
    Lithuania, Klaipeda
    MS-Off Ver
    2021
    Posts
    17

    Unhappy How to make percentages add up correctly

    Hello, I have a chart which auto-calculates how much of each ingredient I need to make a specific mixture. After it auto-calculates that, it also auto-calculates how much of each ingredient I still have remaining, and it then calculates how much more of that specific mixture I can make, with those remaining values of each ingredient, that's where the problem lies, I can't figure some things out, look. 1p.png Take a look at that "possible amount from each remaining", and also look at the "%", in my auto calculations, the "b" ingredient is greater than "a", even though in "%", "a%" is greater than "b%". (a is 54% and b is 22.6% but for some reason a is 39.042 and b is 72.3. Don't know what to do. 2p.png. I'll try to calculate c and d when I know how to calculate a properly
    Last edited by AliGW; 09-19-2021 at 07:03 AM.

  2. #2
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,830

    Re: Help please, my percentages don't match

    This is probably to do with rounding.

    There are instructions at the top of the page explaining how to attach your sample workbook.
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

  3. #3
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,830

    Re: How to make percentages add up correctly

    Administrative Note:

    Welcome to the forum. We would very much like to help you with your query, however the thread title does not really convey what your request is about. Tell us what you are trying to do, not how you think it should be done.

    Please take a moment to amend your thread title. Make sure that the title properly explains your request. Your title should be explicit and not be generic (this includes function names used without an indication of what you are trying to achieve).

    Please see Forum Rule #1 about proper thread titles and adjust accordingly. To edit the thread title, open the original post to edit and then click on Go Advanced (bottom right) to access the area where you can edit your title.

    (Note: this change is not optional. As you are still new here, I have done it for you today.)

  4. #4
    Registered User
    Join Date
    09-03-2021
    Location
    Lithuania, Klaipeda
    MS-Off Ver
    2021
    Posts
    17

    Re: How to make percentages add up correctly

    I just attached it, sorry about the thread title, I won't procrastinate next time on that. Not sure if it has anything to do with rounding, pretty sure it's more likely it has something to do with the fact that I'm using incorrect formulas to calculate what I want :/
    Attached Files Attached Files

  5. #5
    Forum Guru
    Join Date
    04-13-2005
    Location
    North America
    MS-Off Ver
    2002/XP and 2007
    Posts
    15,829

    Re: How to make percentages add up correctly

    row 13 doesn't look right to me, though it could be that I am not correctly understanding what you are trying to do. I would have expected something like:

    1) Figure out how much product could be made from the remaining of each as if it were the limiting ingredient. possible=remaining/% or B13 =B12/B2 copied across
    2) Look at the possible remainings and choose the smallest. B14 =MIN(B13:E13)
    Quote Originally Posted by shg
    Mathematics is the native language of the natural world. Just trying to become literate.

  6. #6
    Forum Expert
    Join Date
    01-05-2013
    Location
    Singapore
    MS-Off Ver
    H&B2016 & H&B2021
    Posts
    3,059

    Re: How to make percentages add up correctly

    Perhaps, B13=MIN($B$12:$E$12)/INDEX($B$2:$E$2,MATCH(MIN($B$12:$E$12),$B$12:$E$12,0))*B2, copy across.

  7. #7
    Registered User
    Join Date
    09-03-2021
    Location
    Lithuania, Klaipeda
    MS-Off Ver
    2021
    Posts
    17

    Re: How to make percentages add up correctly

    well, b is the limiting ingredient, it isn't the smallest of the 4 values, but I need it to be the one on which all the other calculations are based. About row 13, yup you're right all of it most likely very wrong, I'm trying to figure out how to fix it. It's sort of confusing to explain but, I need "b" to be 100% and 22% at the same time. Like, if b is 22.6% and I have 72.3grams of it, I need to calculate how much will "a" be if that 72.3grams of "b" were 100%. Again "a" is 54%, what do I do? make that 54% into a 154%?

  8. #8
    Registered User
    Join Date
    09-03-2021
    Location
    Lithuania, Klaipeda
    MS-Off Ver
    2021
    Posts
    17

    Re: How to make percentages add up correctly

    nah, unfortunately that doesn't work:/ I mean doesn't calculate what I need, but thanks for effort anyway
    Last edited by Rytis; 09-19-2021 at 11:31 AM.

  9. #9
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,830

    Re: How to make percentages add up correctly

    "Doesn't work" is not going to be of any assistance to your helpers.

    To wit, whilst I realise that English may not be your first language, 'please' and 'thank you' are universal courtesies.

  10. #10
    Registered User
    Join Date
    09-03-2021
    Location
    Lithuania, Klaipeda
    MS-Off Ver
    2021
    Posts
    17

    Re: How to make percentages add up correctly

    Yeah sorry again, that's a bit of overkill for politeness but sure thing I'll do that, and yeah, today I'm just not in my near native level english thinking mode

  11. #11
    Valued Forum Contributor janmorris's Avatar
    Join Date
    07-24-2021
    Location
    Japan
    MS-Off Ver
    Google Sheets (& Mac 2021)
    Posts
    1,066

    Re: How to make percentages add up correctly

    the formula from josephteh, put into cell B13, then dragged across, seems to work:
    Please Login or Register  to view this content.
    Attached Images Attached Images
    Last edited by janmorris; 09-19-2021 at 11:37 AM.

  12. #12
    Registered User
    Join Date
    09-03-2021
    Location
    Lithuania, Klaipeda
    MS-Off Ver
    2021
    Posts
    17

    Re: How to make percentages add up correctly

    Hold on I'll try

  13. #13
    Registered User
    Join Date
    09-03-2021
    Location
    Lithuania, Klaipeda
    MS-Off Ver
    2021
    Posts
    17

    Re: How to make percentages add up correctly

    Sorry math isn't really my strong suit but, if b is 22.6% and 72.3g, and a is 54% can it be that a is truly 172.75g? Because too me it looks be a bit too much to be an addition of 31.4%
    Last edited by Rytis; 09-19-2021 at 10:02 PM.

  14. #14
    Forum Guru
    Join Date
    04-13-2005
    Location
    North America
    MS-Off Ver
    2002/XP and 2007
    Posts
    15,829

    Re: How to make percentages add up correctly

    If the math seems confusing, I would suggest thinking of these as "proportionalities" rather. Using B as the limiting ingredient, the proportionality is massB/wt%B=massA/wt%A and solve for massA so massA=massA*massB/wt%B, which, I think, is what the proposed formula is. FWIW, 54*72.3/22.6 correctly evaluates to 172.75.

    If you would like an algebra tutorial for solving proportions: https://www.purplemath.com/modules/ratio2.htm

  15. #15
    Registered User
    Join Date
    09-03-2021
    Location
    Lithuania, Klaipeda
    MS-Off Ver
    2021
    Posts
    17

    Re: How to make percentages add up correctly

    Thanks a lot, it seems to work)

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 1
    Last Post: 11-28-2019, 09:23 AM
  2. [SOLVED] Making SUMIF and OFFSET MATCH MATCH MATCH MATCH work
    By XL Grasshopper in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 07-30-2017, 11:12 AM
  3. [SOLVED] Sum monthly percentages into quarterly percentages
    By Zyphon in forum Excel General
    Replies: 6
    Last Post: 06-11-2015, 04:40 AM
  4. INDEX MATCH MATCH/OFFSET MATCH MATCH with named ranges
    By Andrew-Mark in forum Excel General
    Replies: 3
    Last Post: 02-27-2015, 10:56 PM
  5. Reversing input percentages against variable percentages.
    By Journeyman3000 in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 02-26-2014, 08:56 PM
  6. [SOLVED] Percentages
    By GSTL in forum Excel General
    Replies: 3
    Last Post: 12-04-2005, 05:50 PM
  7. [SOLVED] Percentages
    By www.javysgifts.com in forum Excel General
    Replies: 2
    Last Post: 07-31-2005, 02:05 PM

Tags for this Thread

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