+ Reply to Thread
Results 1 to 6 of 6

need help with formula

  1. #1
    Registered User
    Join Date
    08-07-2005
    Posts
    22

    need help with formula

    I'd appreciate help with a formula

    I need a formula to calculate the following

    4.5% of any amount up to and equal to $41,100.00 PLUS 6.00% on any amount above $41,100.

    ie $20,000 would be (20,000 x .045) $900.00

    ie $50,000 would be [(41,100 x .05) + (8,900 x .060)] $2,383.50

    Thanks Peter

  2. #2
    Dave O
    Guest

    Re: need help with formula

    I used
    =IF(A1>41100,(A1-41100)*6%+(41100*4.5%),A1*4.5%)

    Some notes and ideas: you can use cell references in place of the
    41100, the 6%, and the 4.5% and enter those values in those cells,
    rather than hardcode them.


  3. #3
    Jim Rech
    Guest

    Re: need help with formula

    Here's two ways:

    =MIN(A1,41100)*0.045+MAX(0,A1-41100)*0.06

    =A1*0.045+MAX(0,A1-41100)*0.015


    --
    Jim
    "pgruening" <pgruening.1xetia_1130162708.9183@excelforum-nospam.com> wrote
    in message news:pgruening.1xetia_1130162708.9183@excelforum-nospam.com...
    |
    | I'd appreciate help with a formula
    |
    | I need a formula to calculate the following
    |
    | 4.5% of any amount up to and equal to $41,100.00 PLUS 6.00% on any
    | amount above $41,100.
    |
    | ie $20,000 would be (20,000 x .045) $900.00
    |
    | ie $50,000 would be [(41,100 x .05) + (8,900 x .060)] $2,383.50
    |
    | Thanks Peter
    |
    |
    | --
    | pgruening
    | ------------------------------------------------------------------------
    | pgruening's Profile:
    http://www.excelforum.com/member.php...o&userid=26011
    | View this thread: http://www.excelforum.com/showthread...hreadid=478763
    |



  4. #4
    BekkiM
    Guest

    RE: need help with formula

    Assuming your Amount is in Column A:

    =IF(A1>41100,(41100*.045)+(A1-41100)*.06, A1*.045)

    "pgruening" wrote:

    >
    > I'd appreciate help with a formula
    >
    > I need a formula to calculate the following
    >
    > 4.5% of any amount up to and equal to $41,100.00 PLUS 6.00% on any
    > amount above $41,100.
    >
    > ie $20,000 would be (20,000 x .045) $900.00
    >
    > ie $50,000 would be [(41,100 x .05) + (8,900 x .060)] $2,383.50
    >
    > Thanks Peter
    >
    >
    > --
    > pgruening
    > ------------------------------------------------------------------------
    > pgruening's Profile: http://www.excelforum.com/member.php...o&userid=26011
    > View this thread: http://www.excelforum.com/showthread...hreadid=478763
    >
    >


  5. #5
    tina
    Guest

    RE: need help with formula

    Hi
    Try something likes this assuming figure in a1
    =if(a1>41100,(a1-41100)*.060+41100*.045,a1*.045)
    Tina
    "pgruening" wrote:

    >
    > I'd appreciate help with a formula
    >
    > I need a formula to calculate the following
    >
    > 4.5% of any amount up to and equal to $41,100.00 PLUS 6.00% on any
    > amount above $41,100.
    >
    > ie $20,000 would be (20,000 x .045) $900.00
    >
    > ie $50,000 would be [(41,100 x .05) + (8,900 x .060)] $2,383.50
    >
    > Thanks Peter
    >
    >
    > --
    > pgruening
    > ------------------------------------------------------------------------
    > pgruening's Profile: http://www.excelforum.com/member.php...o&userid=26011
    > View this thread: http://www.excelforum.com/showthread...hreadid=478763
    >
    >


  6. #6
    Registered User
    Join Date
    08-07-2005
    Posts
    22

    THANKS all for your help!

    THANKS all for your help!

    Peter

+ 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