+ Reply to Thread
Results 1 to 7 of 7

Formula for Pro Rata Multiplication

Hybrid View

  1. #1
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    Microsoft 365
    Posts
    14,696
    Assume cost is in B1

    =IF(A1>150,MIN(A1/200,1)*B1,0)

  2. #2
    Registered User
    Join Date
    11-01-2006
    Posts
    45

    Thumbs up

    Excellent DDL!! thanks so much

  3. #3
    Registered User
    Join Date
    11-01-2006
    Posts
    45

    Question

    Hi,

    Sorry i have just been given another criteria for this formula.

    There will always be a value in C1 that relates to whether we pay out. If C1 has the word 'invalid' in it then the answer should also be zero, however, any other words in C1 then the criteria in the formula would take place.

    how can i work this in to the formula, can it be done?

    Thanks,

  4. #4
    Forum Contributor corinereyes's Avatar
    Join Date
    12-02-2003
    Location
    Philippines
    MS-Off Ver
    MS Excel 2016
    Posts
    520
    Hi CC_mfc,

    Try this:

    =IF(C1= "INVALID", 0, IF(A1>150,MIN(A1/200,1)*B1,0))
    Corine

  5. #5
    Registered User
    Join Date
    11-01-2006
    Posts
    45
    Excellent - Thank you

  6. #6
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    Microsoft 365
    Posts
    14,696
    or

    =(A1>150)*(C1<>"invalid")*MIN(A1/200,1)*B1
    Last edited by daddylonglegs; 09-25-2007 at 08:23 AM.

+ 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