+ Reply to Thread
Results 1 to 11 of 11

Payload calculator formulas

  1. #1
    Registered User
    Join Date
    08-05-2016
    Location
    Paramaribo
    MS-Off Ver
    office 365
    Posts
    22

    Payload calculator formulas

    Hello,
    I'm working on building a payload calculator for a small fleet of single engine airplanes. I got stuck on 1 part and am wondering if someone is able to help me out.

    In the attached excel sheet you'll see that on sheet 1 the airplane and pilot is selected. Then a departure and destination is selected in the drop down list for each leg (up to 5 legs). The idea is that once that is filled in the payload is automatically calculated.

    Column "I" shows the fuel burn for that leg. In the tabs "DistHdgMin GA8" and "DistHdgMin C206" each leg shows a time(in minutes), heading and distance for this calculation I only need the time as the airplanes burn 1liter/minute. Is there a way to atomically put the number of minutes into column I depending on the selected route?

    I would appreciate any help!
    Attached Files Attached Files

  2. #2
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,199

    Re: Payload calculator formulas

    What determines which table to use?

  3. #3
    Registered User
    Join Date
    08-05-2016
    Location
    Paramaribo
    MS-Off Ver
    office 365
    Posts
    22
    Good point! The airplane PZ-NMM uses the C206 table. Both the PZ-NMA and PZ-NMF use the GA8 table.

    Quote Originally Posted by JohnTopley View Post
    What determines which table to use?

  4. #4
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,199

    Re: Payload calculator formulas

    Try

    =INDEX('DistHdgMin GA8'!$D$9:$AL$115,MATCH(Sheet1!$D8,'DistHdgMin GA8'!$A$9:$A$115,0)+2,MATCH(Sheet1!$E8,'DistHdgMin GA8'!$D$6:$AL$6,0))

    BUT we need to know which tab and by default select the "Min" row.

  5. #5
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,199

    Re: Payload calculator formulas

    Updated ..


    =IF($B$3="PZ-NMM",INDEX('DistHdgMin C206'!$D$9:$AL$115,MATCH(Sheet1!$D8,'DistHdgMin C206'!$A$9:$A$115,0)+2,MATCH(Sheet1!$E8,'DistHdgMin C206'!$D$6:$AL$6,0)),INDEX('DistHdgMin GA8'!$D$9:$AL$115,MATCH(Sheet1!$D8,'DistHdgMin GA8'!$A$9:$A$115,0)+2,MATCH(Sheet1!$E8,'DistHdgMin GA8'!$D$6:$AL$6,0)))

  6. #6
    Registered User
    Join Date
    08-05-2016
    Location
    Paramaribo
    MS-Off Ver
    office 365
    Posts
    22

    Re: Payload calculator formulas

    When I try to put that in cell I8 it gives me an error message, any idea what that could be?

  7. #7
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,199

    Re: Payload calculator formulas

    See attached.
    Attached Files Attached Files

  8. #8
    Registered User
    Join Date
    08-05-2016
    Location
    Paramaribo
    MS-Off Ver
    office 365
    Posts
    22

    Re: Payload calculator formulas

    That works perfect thank you!

    That leaves me with one question regarding a different formula. Each airstrip has a maximum take-off weight, these values are listed in the tab "lists" under take off restrictions.

    When the airplane PZ-NMM is selected the T/O restriction under C206 should be used, for PZ-NMA and PZ-NMF the restrictions under GA8.

    On the first tab in cell F8 the following formula is put in: =(H8+(0.72*I8))-(J8*0.72)-K8-L8. The part =(H8+(0.72*I8) should however be maximized to the value listed in the "lists" tab according to the departure airstrip (and airplane) that has been selected on each leg.

    Is this possible? Your help will be greatly appreciated again!

  9. #9
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,199

    Re: Payload calculator formulas

    If I interpret the requirement correctly:

    in F8

    =MIN(($H8+(0.72*$I8)),VLOOKUP($D$8,Lists!$D$3:$F$37,IF($B$3="PZ-NMM",2,3),0))-(J8*0.72)-K8-L8

    i.e ($H8+(0.72*$I8) must <= value in "LIst"

  10. #10
    Registered User
    Join Date
    08-05-2016
    Location
    Paramaribo
    MS-Off Ver
    office 365
    Posts
    22

    Re: Payload calculator formulas

    Perfect, thank you!

  11. #11
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,199

    Re: Payload calculator formulas

    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED. Thanks.

+ 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] Arbitrage Calculator formulas
    By mgoldie1 in forum Excel Formulas & Functions
    Replies: 16
    Last Post: 01-12-2022, 01:00 AM
  2. Pay Bonus Calculator Formulas
    By Yorke181 in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 12-24-2014, 02:27 PM
  3. % APR Calculator
    By tonicdesigns in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 10-28-2014, 07:59 AM
  4. Formula to calculate maximum payload with given criteria?
    By Stevie in forum Excel - New Users/Basics
    Replies: 1
    Last Post: 05-07-2008, 01:54 PM
  5. Integrated calculator in excel 07 instead of separate calculator
    By Wayne in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 07-26-2006, 11:20 AM
  6. [SOLVED] calculator
    By Colin2u in forum Excel General
    Replies: 5
    Last Post: 08-19-2005, 04:13 PM
  7. loan calculator cells, P&I formulas do not copy to second cloumn
    By Mr. C in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 03-05-2005, 12:06 PM

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