+ Reply to Thread
Results 1 to 4 of 4

Performance Bond

  1. #1
    Registered User
    Join Date
    03-01-2023
    Location
    United States
    MS-Off Ver
    365
    Posts
    1

    Performance Bond

    Hello all,

    I am looking for a way to create a formula to calculate the information below within excel so that it is a table that can be used in the future by just plugging in variables. I believe this would be a tiered formula. This is for a performance bond regarding construction work.

    The bid amount for the project is $3,000,000 and the first 100K is $10 per thousand making the calculation $1K and dropping the bid to $2.9M. The next 400K is $9 per thousand which is $3,600 and drops the bid to $2.5M. And so on and so forth until there is a remainder of $500k to the bid amount which goes with row 4 and $6 per thousand. The bond total in the end is $22,200.

    Per Thousand
    1 First $100,000.00 $10.00
    2 Next $400,000.00 $9.00
    3 Next $2,000,000.00 $7.30
    4 Next $2,500,000.00 $6.00
    5 Next $2,500,000.00 $5.45
    5 Next $2,500,000.00 $5.00
    6 Next $10,000,000.00 $4.50

  2. #2
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2403
    Posts
    44,053

    Re: Performance Bond

    Set it up as a small reference table and use:

    =SUMPRODUCT((J3>F3:F9)*(J3-F3:F9)*(G3:G9-N(+G2:G8)))/1000

    see file.
    Attached Files Attached Files
    Glenn




    None of us get paid for helping you... we do this for fun. So DON'T FORGET to say "Thank You" to all who have freely given some of their time to help YOU.

    Temporary addition of accented to illustrate ongoing problem to the TT: L? fh?ile P?draig sona dhaoibh

  3. #3
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2403
    Posts
    44,053

    Re: Performance Bond

    But if you're copying the formula down, use:

    =SUMPRODUCT((J3>$F$3:$F$9)*(J3-$F$3:$F$9)*($G$3:$G$9-N(+$G$2:$G$8)))/1000
    Attached Files Attached Files

  4. #4
    Registered User
    Join Date
    03-01-2023
    Location
    Calgary, Alberta Canada
    MS-Off Ver
    365
    Posts
    1

    Re: Performance Bond

    Similar to Glenn Kennedy's post

    With Excel 365 the formula can be =SUM((B1>E4:E10)*(B1-E4:E10)*H4:H10)
    Adjust the ranges as necessary for the brackets and rate differentials.

    Another thought is to build a Lambda function

    I named the function Bond with a parameter Bid

    =LAMBDA(Bid,LET(b,{0;100000;500000;2500000;5000000;7500000;10000000},r,{0.01;-0.001;-0.0017;-0.0013;-0.00055;-0.00045;-0.0005},SUM((Bid>b)*(Bid-b)*r)))

    to use the function with the Bid Amount in B1 enter =Bond(B1)
    Last edited by DavePatton; 03-04-2023 at 06:22 PM.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Bond on Bond Calculation
    By amlau0422 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 11-19-2022, 11:58 AM
  2. [SOLVED] Need Help Writing Formula To Calculate Construction Performance & Payment Bond
    By construction-guru in forum Excel Formulas & Functions
    Replies: 9
    Last Post: 02-24-2020, 11:42 PM
  3. Bond formula Help
    By Concreteguy2001 in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 02-24-2020, 05:59 PM
  4. Excel Performance: Tips for optimizing performance obstructions
    By dangelor in forum Tips and Tutorials
    Replies: 0
    Last Post: 08-06-2019, 06:33 PM
  5. current moth MTD performance with last year same month same days performance
    By satyanarayana in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 12-03-2015, 03:36 AM
  6. [SOLVED] Need Help Writing Formula To Calculate Construction Performance & Payment Bond
    By Dallas Ham in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 06-29-2013, 04:02 AM
  7. Need help with bond yields
    By jereln in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 02-09-2007, 04:09 AM

Tags for this Thread

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