+ Reply to Thread
Results 1 to 3 of 3

Nested If Fuction for calculation

  1. #1
    Registered User
    Join Date
    07-02-2012
    Location
    Ohio
    MS-Off Ver
    Excel 2007
    Posts
    21

    Nested If Fuction for calculation

    Hey all, I am trying to get a list of if statements to determine a shipping charge for me. Can anyone identify why I keep getting the "too few arguments" return?

    =IF(AND(B4=AD3),P4*0.032,P4*.02,IF(AND(B4=AD4),P4*.03,P4*.02,IF(AND(b4=AD5),P4*.03,P4*.02,IF(and(b4=AD6),P4*.025,P4*.02))))
    If it matches the true statement it should return p*the number I've entered. If it doesn't meet any of the 4 criteria I would like it to multiple by .02.


    Thanks.

    Mack

  2. #2
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Nested If Fuction for calculation

    Maybe?

    =IF(B4=AD3,P4*0.032,IF(B4=AD4,P4*0.03,IF(B4=AD5,P4*0.03,IF(B4=AD6,P4*0.025,P4*0.02))))

    or

    =P4*IF(B4=AD3,0.032,IF(B4=AD4,0.03,IF(B4=AD5,0.03,IF(B4=AD6,0.025,0.02))))
    Where there is a will there are many ways.

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

  3. #3
    Registered User
    Join Date
    07-02-2012
    Location
    Ohio
    MS-Off Ver
    Excel 2007
    Posts
    21

    Re: Nested If Fuction for calculation

    Works great thank you very much. I see what you did there!

+ 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