+ Reply to Thread
Results 1 to 3 of 3

Formula Help. I think multiple IF

  1. #1
    Registered User
    Join Date
    10-08-2013
    Location
    United States
    MS-Off Ver
    Excel 2007
    Posts
    1

    Formula Help. I think multiple IF

    What I am trying to do is make a formula that meets the following:

    IF the total is between 0-10000 then take the total and multiply it by .10
    IF the total is more than 10000 then it equals 1000
    IF the total is less than 0 then is equals 0

    I am sure it is super easy and I am just missing a simple step.

    Thank you

  2. #2
    Forum Expert Ace_XL's Avatar
    Join Date
    06-04-2012
    Location
    UAE
    MS-Off Ver
    2016
    Posts
    6,074

    Re: Formula Help. I think multiple IF

    =if(a1<0,0,if(a1<=10000,a1*0.1,1000))
    or
    =MAX(0,MIN(1000,A1*0.1))
    Last edited by Ace_XL; 10-08-2013 at 11:26 AM.
    Life's a spreadsheet, Excel!
    Say thanks, Click *

  3. #3
    Forum Guru benishiryo's Avatar
    Join Date
    03-25-2011
    Location
    Singapore
    MS-Off Ver
    Excel 2013
    Posts
    5,147

    Re: Formula Help. I think multiple IF

    welcome to the forum, cheath1919. try:
    =IF(A1<0,0,IF(A1>10000,1000,A1*0.1))

    Thanks, if you have clicked on the * and added our rep.

    If you're satisfied with the answer, click Thread Tools above your first post, select "Mark your thread as Solved".

    "Contentment is not the fulfillment of what you want, but the realization of what you already have."


    Tips & Tutorials I Compiled | How to Get Quick & Good Answers

+ 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. Excel 2007 : Index, Match, Large Formula: Multiple Criteria, Multiple Ranges
    By SimpleJack in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 07-19-2013, 08:54 AM
  2. Formula to lookup multiple text values in multiple columns
    By karimk in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 07-04-2013, 05:33 AM
  3. Formula Publishing Multiple Entries Originating From Multiple Criteria
    By warrior2411 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 02-18-2013, 05:07 PM
  4. Replies: 0
    Last Post: 11-08-2012, 01:07 PM
  5. Extract multiple rows from multiple worksheets with Index formula
    By RedApple in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 06-10-2011, 02:33 PM

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