+ Reply to Thread
Results 1 to 6 of 6

IF formula problem

  1. #1
    Registered User
    Join Date
    12-03-2012
    Location
    San Diego, CA
    MS-Off Ver
    2010
    Posts
    2

    IF formula problem

    I am trying to create an "IF" statement but am having difficulty.

    Column "C" will be prices of items our project will be purchasing.
    Column "D" will be "C" multiplied by 4.1% with a cap of $6150.
    I tried:
    =IF(C2>150000,"6150", C2<=150000,"C2*0.041")
    ($150000 being the price where the cap hits)

    I get a message stating that I've created too many arguments.

    Any help is appreciated.

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

    Re: IF formula problem

    Try..

    =min(C2*0.041,6150)
    Life's a spreadsheet, Excel!
    Say thanks, Click *

  3. #3
    Forum Expert Jakobshavn's Avatar
    Join Date
    08-17-2012
    Location
    Lakehurst, NJ, USA
    MS-Off Ver
    Excel 2007
    Posts
    1,970

    Re: IF formula problem

    =if(c2>150000,6150, c2*0.041)
    Gary's Student

  4. #4
    Forum Expert Moo the Dog's Avatar
    Join Date
    09-28-2012
    Location
    Wisconsin
    MS-Off Ver
    Office 365 (PC & Mac)
    Posts
    1,845

    Re: IF formula problem

    Try this in column D:

    =MIN(c2*0.041,6150)

    - Moo

    * Ace_XL got it - he is a quick one.
    Last edited by Moo the Dog; 12-03-2012 at 03:58 PM. Reason: Looks like Ace beat me to it... again :)

  5. #5
    Registered User
    Join Date
    12-03-2012
    Location
    San Diego, CA
    MS-Off Ver
    2010
    Posts
    2

    Re: IF formula problem

    Got it!

    Thank you very much!

  6. #6
    Forum Contributor
    Join Date
    11-05-2012
    Location
    India
    MS-Off Ver
    Excel 2010
    Posts
    229

    Re: IF formula problem

    Hi muphasta!

    You don't need the third argument (C2<=150000) in your formula. You also don't need the quotation marks.

    Your formula should be:
    =IF(C2>150000,6150,C2*0.041)

    If you want to read more about IF formula, go here.

    Don't forget to click on the little star to the left of this post if you feel I helped!
    Taming the Excel dragon... www.TheExcelphile.com

+ 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