+ Reply to Thread
Results 1 to 4 of 4

Conditional calculation, how it can be done ?

  1. #1
    Registered User
    Join Date
    04-03-2005
    Posts
    58

    Conditional calculation, how it can be done ?

    Hi,

    I want to calculate % of certain values. e.g if sales are below 30,000 then NIL. If sales are above 30,000 but <= 60,000 then 2 % of the sales over and above 30,000. If sales are above 60,000 then 1.50 % of 60,000 & anything above 60,000 will be 2 %. Does this example need if/ and if function ? If so how is it put ; if not which else is the one I can use .

    Regards,

    Vikrant

  2. #2
    Forum Expert
    Join Date
    06-18-2004
    Location
    Canada
    MS-Off Ver
    Office 2016
    Posts
    1,474
    Try...

    =IF(A1<30000,"Nil",IF(A1<=60000,(A1-30000)*2%,(60000*1.5%)+(A1-60000)*2%))


    If you're using a non-English version of Excel that uses a semi-colon as a list separator, try...

    =IF(A1<30000;"Nil";IF(A1<=60000;(A1-30000)*2%;(60000*1.5%)+(A1-60000)*2%))

    Hope this helps!

  3. #3
    Registered User
    Join Date
    04-03-2005
    Posts
    58

    conditional formula

    Hi Domenic

    Thx. I tried the condition that you mentioned. But it is giving formula error. Any other way ?

    regards, vikrant

  4. #4
    Registered User
    Join Date
    04-03-2005
    Posts
    58

    conditional formula

    Hi,

    I am sorry. I did a mistake. It is working. Thanks for your help

    Regards,

    Vikrant

+ 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