+ Reply to Thread
Results 1 to 3 of 3

if statement formula

  1. #1
    Marlis
    Guest

    if statement formula

    I want to create a cell that takes a total, and multplies it by 15%, however,
    if the 15% is less than twenty, I want the amount to be 20.

    I.E.-- subtotal is $95.00, so 15% would be $14.25. However I want the cell
    to show$20.00.
    I.E.-- sutotal is $300.00, so 15% would be $45.00. I want the cell to show
    the $45.00.

    Thank you

  2. #2
    Rowan
    Guest

    RE: if statement formula

    If your total is in cell A1 then in B1 type =IF(A1*0.15<20,20,A1*0.15)

    Regards
    Rowan

    "Marlis" wrote:

    > I want to create a cell that takes a total, and multplies it by 15%, however,
    > if the 15% is less than twenty, I want the amount to be 20.
    >
    > I.E.-- subtotal is $95.00, so 15% would be $14.25. However I want the cell
    > to show$20.00.
    > I.E.-- sutotal is $300.00, so 15% would be $45.00. I want the cell to show
    > the $45.00.
    >
    > Thank you


  3. #3
    Earl Kiosterud
    Guest

    Re: if statement formula

    Marlis,

    =MAX(Total*15%, 20)
    =MAX(SUM(A2:A9)*15%, 20)
    --
    Earl Kiosterud
    www.smokeylake.com

    "Marlis" <Marlis@discussions.microsoft.com> wrote in message
    news:E5EB9451-DBAF-4406-89E3-13F2039F117E@microsoft.com...
    >I want to create a cell that takes a total, and multplies it by 15%,
    >however,
    > if the 15% is less than twenty, I want the amount to be 20.
    >
    > I.E.-- subtotal is $95.00, so 15% would be $14.25. However I want the
    > cell
    > to show$20.00.
    > I.E.-- sutotal is $300.00, so 15% would be $45.00. I want the cell to
    > show
    > the $45.00.
    >
    > Thank you




+ 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