+ Reply to Thread
Results 1 to 9 of 9

How to solve this % formula?

  1. #1
    Registered User
    Join Date
    11-17-2013
    Location
    london
    MS-Off Ver
    Excel 2010
    Posts
    4

    How to solve this % formula?

    In microsoft exel i need a formula that will work out if d53 is more than or = to 10000 it will put 2% of 10000 in e53, If d53 is more than 10,001 but less then 20,000 it will put 3% in e53, If d53 is more than 20,001 it will put 4% in e53.

    Thanks so much
    Last edited by rugbymadkid; 11-17-2013 at 07:28 PM.

  2. #2
    Forum Expert etaf's Avatar
    Join Date
    10-22-2004
    Location
    Wittering, West Sussex, UK
    MS-Off Ver
    365 (Mac OSX) (16.83 (24031120))
    Posts
    8,739

    Re: Really need help to make a Formula for this. Really appreciated

    can you change you title to reflect the question - please see the rules here
    http://www.excelforum.com/forum-rule...rum-rules.html
    1. Use concise, accurate thread titles. Your post title should describe your problem, not your anticipated solution. Use terms appropriate to a Google search. Poor thread titles, like Please Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will be addressed according to the OP's experience in the forum: If you have less than 10 posts, expect (and respond to) a request to change your thread title. If you have 10 or more posts, expect your post to be locked, so you can start a new thread with an appropriate title.

    To change the title of the thread, click EDIT on the original post, then click the Go Advanced button, then change the title. If two or more days have passed, the EDIT button will not appear, and you need to ask a moderator to change the title.
    then i can reply with a solution ,
    Wayne
    if my assistance has helped, and only if you wish to , there is an "* Add Reputation" on the left hand side - you can add to my reputation here

    If you have a solution to your thread - Please mark your thread solved do the following: >
    Select Thread Tools-> Mark thread as Solved. To undo, select Thread Tools-> Mark thread as Unsolved.

  3. #3
    Registered User
    Join Date
    11-17-2013
    Location
    london
    MS-Off Ver
    Excel 2010
    Posts
    4

    Re: Really need help to make a Formula for this. Really appreciated

    there you go is that ok? can you help me with the formula ive been trying for ages to work it out, thanks

  4. #4
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,929

    Re: How to solve this % formula?

    Hi and welcome to the forum

    I would create a small table, something like this...
    A
    B
    1
    0
    2%
    2
    10001
    3%
    3
    20001
    4%

    And then use a vlooup() formula to find the %

    =VLOOKUP($D$53,$A$1:$B$3,2,1)
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  5. #5
    Registered User
    Join Date
    11-17-2013
    Location
    london
    MS-Off Ver
    Excel 2010
    Posts
    4

    Re: How to solve this % formula?

    Still getting NA using to format you gave me. Im using a data validation list to chose from the £10,000,£10,001,£20,001. then there is a box next to it were i put your formula to work out and put the 2% of £10,000 3% of $10,001 or 4% of £20,001 when selected in the data validation list. Any clue what im doing wrong

  6. #6
    Forum Expert etaf's Avatar
    Join Date
    10-22-2004
    Location
    Wittering, West Sussex, UK
    MS-Off Ver
    365 (Mac OSX) (16.83 (24031120))
    Posts
    8,739

    Re: How to solve this % formula?

    if d53 is more than or = to 10000 it will put 2% of 10000 in e53,
    If d53 is more than 10,001 but less then 20,000 it will put 3% in e53,
    If d53 is more than 20,001 it will put 4% in e53.
    you have more than 20001 and less than 20000 - what to do if 20000 ?

    what happens
    D53 <10000
    assuming

    i assume you meant less than

    so lets assume you mean

    0-10000 =2%
    >10000 to 20000 = 3%
    >20000 = 4%

    =if( d53 > 20000 , 0.04, if( d53>10000, 0.03, 0.02))

  7. #7
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,929

    Re: How to solve this % formula?

    Take a look at the attached and see if you can adapt it to your data. If not, upload a (clean) sample of what you are working with for me to take a look at.
    Attached Files Attached Files

  8. #8
    Registered User
    Join Date
    11-17-2013
    Location
    london
    MS-Off Ver
    Excel 2010
    Posts
    4

    Re: How to solve this % formula?

    Your last one helped after i looked ofer it thanks for the help! ive Add Reputation for you

  9. #9
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,929

    Re: How to solve this % formula?

    Happy to help and thanks for the feedback

    I will mark this thread SOLVED for you, for future reference, please help us to keep things tidy by using the THREAD TOOLS just above your 1st post

+ 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. Macro or Formula needed - Help much appreciated.
    By Benhouse86 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 11-20-2012, 07:10 AM
  2. Pro Rata Formula - assistance appreciated
    By leviathan54 in forum Excel General
    Replies: 2
    Last Post: 02-01-2012, 09:08 PM
  3. Replies: 2
    Last Post: 10-15-2010, 09:20 AM
  4. Got there in the end. Any help appreciated! :)
    By ExceI in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 07-24-2010, 11:46 AM
  5. Somebody help me please - any help much appreciated!
    By bubbleou in forum Excel General
    Replies: 1
    Last Post: 03-28-2007, 03:13 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