+ Reply to Thread
Results 1 to 11 of 11

Apply IF statement formula with multiple conditions

  1. #1
    Registered User
    Join Date
    05-04-2010
    Location
    wyoming
    MS-Off Ver
    Excel 2003
    Posts
    13

    Apply IF statement formula with multiple conditions

    =IF($C$5="Out of House",($C$14*0.5),IF($C$5="In House",($C$17*0.275))) is what I have now, I found out today that it is being changed so that if the commission is 6% vs. 5% and its an In House transaction, that the commision changes from .275 to .300 where cell C6 is the commission. So I need to take and make it do this

    If the commision is 5% and its an in house transaction it would be the formula I have here however if the commission changes to 6% and its an In House transaction the $C$17*0.275 would change to $C$17*0.300. So far everything I have tried has just returned a false statement.
    Last edited by gtrstar; 09-28-2012 at 07:55 PM.

  2. #2
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,316

    Re: Trrouble making this IF formual work.

    Try

    Please Login or Register  to view this content.
    Last edited by jeffreybrown; 09-28-2012 at 08:06 PM.
    HTH
    Regards, Jeff

  3. #3
    Registered User
    Join Date
    05-04-2010
    Location
    wyoming
    MS-Off Ver
    Excel 2003
    Posts
    13

    Re: Trrouble making this IF formual work.

    That returnd #N/A

  4. #4
    Forum Expert icestationzbra's Avatar
    Join Date
    01-07-2004
    MS-Off Ver
    2007, 2010
    Posts
    1,421

    Re: Apply IF statement formula with multiple conditions

    Please Login or Register  to view this content.
    @jefferybrown's formula may be spitting out #N/A because of 0.5 and 0.6, which should be 0.05 and 0.06 instead. also, from 5% to 6%, shouldn't the commission go up from 0.275 to 0.3, if i understand you correctly?
    - i.s.z -
    CSE, aka Array aka { }, formulae are confirmed with CONTROL+SHIFT+ENTER.
    Replace commas ( , ) with semicolons ( ; ) in formulae, if your locale setting demands.
    All good ideas are courtesy resources from this forum as well as others around the web.
    - e.o.m -

  5. #5
    Registered User
    Join Date
    05-04-2010
    Location
    wyoming
    MS-Off Ver
    Excel 2003
    Posts
    13

    Re: Apply IF statement formula with multiple conditions

    Yes that is correct 6% = .03 while 5% is = .0275. I'll give this a try thanks to each of you.

  6. #6
    Registered User
    Join Date
    05-04-2010
    Location
    wyoming
    MS-Off Ver
    Excel 2003
    Posts
    13

    Re: Apply IF statement formula with multiple conditions

    Ok that worked like I wanted it to. Now as I experiment I run into a whole new set of issues. Lets say the commission is 7% or 4% it returns #N/A because these values are not defined anywhere. So I am thinking how can I set this up to make it where any number >=.55 would be the .275 while any number <=.56 would be the .30?

  7. #7
    Forum Expert icestationzbra's Avatar
    Join Date
    01-07-2004
    MS-Off Ver
    2007, 2010
    Posts
    1,421

    Re: Apply IF statement formula with multiple conditions

    upload a workbook with sample data, we can help you set it up.

  8. #8
    Registered User
    Join Date
    05-04-2010
    Location
    wyoming
    MS-Off Ver
    Excel 2003
    Posts
    13

    Re: Apply IF statement formula with multiple conditions

    OK here it is and thanks in advance.

    Ok so to recap the scenerio here

    If the transaction is "Out of House" then the formula is Listing Side gets 60% and the selling Side gets 40% the agents involved then each get 50% of that, that is pretty straight forward

    The problem comes into play when we have an In house transation where the commission is greater than 5% because the agent actually makes less money then if it was an Out of House transaction by 2.5%. So to fix this we are changing the policy to be one rate for transactions above 5% and one for transactions at or less than 5%. And due to competitive changes we are now offering fractions of percentages instead of the old singles of 5 6 or 7, so I need the system to be able to see a range vs. just a few static numbers.

    I need this to calculate in Cell C20 the following.

    If C6 is >5% and C5 is "In House" then the calculation would be C17 * 30% if C6 <= 5% then the calculation would be C17 * 27.5%

    Any further clarification I'll be monitorings this board and reading old post as well most of the day.
    Attached Files Attached Files

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

    Re: Apply IF statement formula with multiple conditions

    Maybe..

    =CHOOSE(MATCH($C$5,{"out of house","in house"},0),$C$14*0.5,IF($C$6>0.05,$C$17*0.3,$C$17*0.275))
    Life's a spreadsheet, Excel!
    Say thanks, Click *

  10. #10
    Registered User
    Join Date
    05-04-2010
    Location
    wyoming
    MS-Off Ver
    Excel 2003
    Posts
    13

    Re: Apply IF statement formula with multiple conditions

    that worked perfectly thanks

  11. #11
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,316

    Re: Apply IF statement formula with multiple conditions

    If you are satisfied with the solution(s) provided, please mark your thread as Solved.

    New quick method:
    Select Thread Tools-> Mark thread as Solved. To undo, select Thread Tools-> Mark thread as Unsolved.

    Or you can use this way:

    How to mark a thread Solved
    Go to the first post
    Click edit
    Click Go Advanced
    Just below the word Title you will see a dropdown with the word No prefix.
    Change to Solved
    Click Save

+ 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